Programming/Android
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...
사용하던 노트북을 포맷하고, 다시 최신버전의 Android Studio를 설치해서 이전 프로젝트를 불러오는데 나온 에러다. build.gradle(Module:app) 파일에 들어가서 dependencies {... compile ... compile ... compile ......} 안에 compile ... 이라고 되어있는 부분을 전부 implementation 이라고 변경하면 된다. dependencies {... implementation ... implementation ... implementation ......} 참고, 유투브 동영상
2018. 4. 11. 17:44