안드로이드 스튜디오 Configuration 'compile' is... 오류 ■ 안드로이드 프로그래밍



건들지 않았던 오래된 App을 Android studio 로 컴파일을 하니 

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


이런 오류가 나오길래 뭔가 봤더니.

App의 build.gradle 에 dependencies 쪽에 라이브러리를 complie로 연결 시켜놓은게 있었는데

이걸 2018년도 말까지 쓸수있으니 바꾸라는 소리.

compile을 implementation으로 변경하면 수정된다.

간단한 내용이라 금방 없애버림 ㅋㅋ

compile'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'



1 2 3 4 5 6 7 8 9 10 다음