WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
문제점 1
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
gradle 환경 버전이 올라가면서 위와 같은 메시지가 에러로 나온다면 기존의 compile 키워드로 사용했던 부분을 implemntation 이나 api 키워드로 대체 해야 빌드가 가능 하다.
수정 전 코드
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':library')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.github.QuadFlask:colorpicker:0.0.13'
}
수정 후 코드
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':library')
implementation 'com.android.support:appcompat-v7:25.3.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
}
Android Studio 패키지명 ( Package Name ) 변경 하기 (2) | 2020.01.03 |
---|---|
Android Studio 3.4.1 스크린 화면 캡쳐 하기 (0) | 2019.12.30 |
Android - Threading Performance (0) | 2019.04.09 |
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android (0) | 2019.03.13 |
Program type already present: android.support.v4.app.ActionBarDrawerToggle$Delegate (0) | 2019.03.11 |
댓글 영역