项目编译遇到:Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version

遇到了启动编译前就报错:Error: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.13.


解决方法:

在项目级 gradle 文件中,只需将 ext.kotlin.version 从您拥有的任何版本增加到“1.4.32”或者其他版本。最新版本时使用时要匹配

com.android.tools.build:gradle跟
https\://services.gradle.org/distributions/

实例

buildscript {
    ext.kotlin_version = '1.4.32'
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.0.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

重点:

不能去setting>plugins>寻找Kotlin插件移除。否则会重启as会报错,无法运行。

项目编译遇到:Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version_第1张图片

解决:

C:\Users\Administrator\AppData\Roaming\Google\AndroidStudio4.2

然后删除引起问题的配置即可。这里引起问题的是Kotlin插件,因此删除最后一行,重启Android studio问题即可解决。

如果你知道是哪个插件引起的问题,删除对应插件即可。

项目编译遇到:Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version_第2张图片

在该目录下便可找到disabled_plugins.txt文件。

打开该文件,会看看如下内容:

androidx.compose.plugins.idea
com.vladsch.idea.multimarkdown
org.jetbrains.kotlin

你可能感兴趣的:(android,Bug,kotlin,开发语言,android)