Kotlin plugin should be enabled before 'kotlin-android-extensions'
build.gradle 에서 plugin 설정이 kotlin-android 보다 먼저 선언되어 있으면 발생한다. 아래와 같이 수정 하면 warning 이 발생하지 않는다.
// 수정 전
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
// 수정 후
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
SO 심볼 리스트 보는 명령어(READELF) (0) | 2021.01.23 |
---|---|
Android Studio 패키지명 ( Package Name ) 변경 하기 (2) | 2020.01.03 |
Android Studio 3.4.1 스크린 화면 캡쳐 하기 (0) | 2019.12.30 |
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. (0) | 2019.12.30 |
Android - Threading Performance (0) | 2019.04.09 |
댓글 영역