赞
踩
遇到了启动编译前就报错: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会报错,无法运行。
解决:
C:\Users\Administrator\AppData\Roaming\Google\AndroidStudio4.2
然后删除引起问题的配置即可。这里引起问题的是Kotlin
插件,因此删除最后一行,重启Android studio
问题即可解决。
如果你知道是哪个插件引起的问题,删除对应插件即可。
在该目录下便可找到disabled_plugins.txt
文件。
打开该文件,会看看如下内容:
- androidx.compose.plugins.idea
- com.vladsch.idea.multimarkdown
- org.jetbrains.kotlin
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。