반응형
Android Studio 를 업데이트 하고 Gradle 업데이트를 하니
아래와 같은 에러가 발생했다.
Caused by: org.gradle.api.GradleException: 'compileDebugJavaWithJavac' task (current target is 1.8) and 'kaptGenerateStubsDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version.
compileOptions에서 JavaVersion 을 업데이트 하면 된다.
Gradle 파일에 따라 아래와 같이 수정하면 된다.
https://play.google.com/store/apps/details?id=com.danchoo.tagalbum&hl=ko
compileOptions.run {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
or
composeOptions {
kotlinCompilerVersion = JavaVersion.VERSION_17
kotlinCompilerExtensionVersion = JavaVersion.VERSION_17
}
https://smartstore.naver.com/happysiso
반응형
'Android > Kotlin' 카테고리의 다른 글
[Android] Compose Auto Scroll pager (0) | 2023.07.24 |
---|---|
[Android] Compose 다중 이벤트 방지 (0) | 2023.07.24 |
[Compose] Compose Image center crop not working (0) | 2023.05.15 |
[Android] Compose Dialog Full Screen (Full Width Screen) (0) | 2023.05.10 |
[Android] Compose MVI, MVVM+ (MvRx) (0) | 2022.08.06 |
댓글