gpt4 book ai didi

Android studio kotlin 插件报错

转载 作者:行者123 更新时间:2023-11-30 00:14:44 26 4
gpt4 key购买 nike

在 android studio 中出现错误:

Plugin Error: Kotlin threw an uncaught AbstractMethodError. Disable Plugin

昨天一切正常。 Gradle :

buildscript {
ext.kotlin_version = '1.1.51'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

Android 工作室版本:3.0.1 Build #AI-171.4443003

甚至更多:如果我创建新的支持 kotlin 的 android 项目失败并出现相同的错误。

#EDIT1

完整的根 gradle 构建脚本。

buildscript {
ext.kotlin_version = '1.1.60'
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

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

task clean(type: Delete) {
delete rootProject.buildDir
}

1.1.60 没有帮助。仍然是同样的错误。并且还在得到

Your version of Kotlin runtime in 'org.jetbrains.kotlin:kotlin-stdlib:1.1.51@jar' library is 1.1.51, while plugin version is 1.1.60-release-Studio3.0-1. 

即使更新到 1.1.60 之后

最佳答案

Plugin Error: Kotlin threw an uncaught AbstractMethodError.

你应该升级kotlin_version .使用 1.1.60 而不是 1.1.51

   ext.kotlin_version = '1.1.60'

注意

1.1.60BUGGY。降级您的版本。

然后Clean-Rebuild-Gradle

关于Android studio kotlin 插件报错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47469662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com