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'