반응형
[2021.11.01] How to solve Module was compiled with an incompatible version of Kotlin?
Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.15
이번 게시글은 안드로이드에서 고틀린으로 빌드를 할 때, 위와 같은 에러메세지 발생 시 해결하는 방법에 대해 알려주도록 하겠다.
(해결 하기 전 고틀린 버전 : ext.kotlin_version = '1.3.61')
해결 방법은 간단하다. 고틀린의 버전을 업그레이드 해주면 된다.
* Gradle Script -> build.gradle (Project)
buildscript {
ext.kotlin_version = '1.4.32'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext.kotlin_version = '1.4.32'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
-> 빨간색으로 색칠 한 부분의 변경 값을 바꿔주면 됨
반응형
'App > Android' 카테고리의 다른 글
[2021.11.01] How to download image files for Android apps? (0) | 2021.11.01 |
---|---|
[2021.11.01] How to use Android RecyclerView using Kotlin? (0) | 2021.11.01 |
[2021.10.01] How to make QR & Barcode Scanner on Android Studio Using kotlin? (0) | 2021.10.01 |
[2021.10.01] How to set Camera Screen on AVD? (3) | 2021.10.01 |
[2021.10.01] How to Solve Fail to connect to camera service? (0) | 2021.10.01 |
댓글