아하
검색 이미지
생활꿀팁 이미지
생활꿀팁생활
생활꿀팁 이미지
생활꿀팁생활
비범한비둘기109
비범한비둘기10919.03.24

안드로이드 APP 개발 중 오류 com.android.support:support-v7:28.0.0

app 개발중 오류가 발생했습니다.

이것 때문에 xml화면도 실행이 안되고 제대로 작동이 안되는것 같은데, 오류 확인좀 부탁드립니다.

첨부 이미지

ERROR: Failed to resolve: com.android.support:support-v7:28.0.0
Show in Project Structure dialog
Affected Modules: app


WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
Affected Modules: app


nullC:/Users/Jun/AndroidStudioProjects/langapp/build.gradleFailed to resolve: com.android.support:support-v7:28.0.0 Show in Project Structure dialog Affected Modules: appnullC:/Users/Jun/AndroidStudioProjects/langapp/build.gradleConfiguration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html Affected Modules: appSync Failed

어떻게 해결할 수 있을지요 ㅠㅠ 도움 부탁드립니다.

55글자 더 채워주세요.
답변의 개수
1개의 답변이 있어요!
  • /* 기존 코드*/ compile 'com.~~~~~' compile 'com.~~~~~' compile 'com.~~~~~'/* 수정 코드*/ implementation 'com.~~~~~' implementation 'com.~~~~~' implementation 'com.~~~~~'

    'compile'을 'implementation' 으로 수정해 보세요.