본문 바로가기

아두이노

안드로이드 스튜디오 3.1 Configuration~ 경고 제거법-compile, implementation, api

반응형


에러나 경고가 다음과 같이 나오는 경우가 있다.


Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.


이런 경우 무조건 build.gradle(app)에서 가서 compile 을 api 나 implementation 로 바꿔준다. 그러면 또 잘 진행된다.


TL;DR(Too Long; Didn’t Read.):

모든 compile을 implementation으로 바꾸고 프로젝트를 빌드해보세요.
만일 여러분이 성공적으로 잘 된다면 훌륭한 프로젝트 입니다.
그렇지 않으면 종속성이 있는지 찾아보고 api키워드를 사용하여 해당 라이브러리를 사용합시다.

참고 사이트 : https://sikeeoh.github.io/2017/08/28/implementation-vs-api-android-gradle-plugin-3/


안드로이드 스튜디오 3.1 Configuration~ 경고 제거법 https://citynetc.tistory.com/221



반응형