[ERROR] invoke-customs are only supported starting with android o (--min-api 26)
2020. 7. 30. 10:40ㆍ개발자료/Android
반응형
# 방법 1 (확인)
build.gradle(Module: app) 에 추가
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
...
}
# 방법 2( 미확인 )
# Disable 'Instant Run'.
Android Studio -> File -> Settings
-> Build, Execution, Deployment
-> Instant Run -> Disable checkbox
반응형
'개발자료 > Android' 카테고리의 다른 글
앱이 종료 되는 시점 인식하기 (0) | 2020.09.24 |
---|---|
[Error] WebView loadUrl 호출시 Webpage not available, net::ERR_CLEARTEXT_NOT_PERMITTED 발생 (0) | 2020.08.03 |
SQLiteOpenHelper 를 이용한 SQLite3 제어 (0) | 2020.07.23 |
JSON 키 존재, 값 존재 여부 체크 (0) | 2020.07.22 |
HashMap 전체 참조(foreach) 방법 (Java) (0) | 2020.07.21 |