下载并安装最新的 Kotlin 插件后,我收到了来自 Android Studio 的过时 Kotlin Runtime 警告,告诉我:
您在“kotlin-stdlib-1.1.2”库中的 Kotlin 运行时版本是 1.1.2,而插件版本是 1.1.2-release-Studio2.3-3。应更新运行时库以避免兼容性问题。
我试图单击更新运行时按钮,但收到另一条消息:
目前不支持 Gradle 项目的自动库版本更新。请手动更新您的 build.gradle。
如何解决这个问题?
https://i.stack.imgur.com/VDN8R.png
为了检查您的 Kotlin 插件的当前版本:
前往:工具 -> Kotlin -> 配置 Kotlin 插件更新 点击“再次检查”。一秒钟后,您将看到 Kotlin 插件的版本。 (如果不是最新的,您的 Kotlin 插件将被更新。)
注意:还要检查您的 (Module: app)
build.gradle
文件并确保您不使用:
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:1.2.21"
但
compile 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.40'
注意区别“...jre7...”->“...jdk7...”。还将“1.2.40”替换为您当前的 Kotlin 插件版本。
您可以在项目级别 build.gradle
文件中更新 Kotlin 版本。如果您以通常的方式配置它,则应该在顶部有以下行:
ext.kotlin_version = '1.1.2'
要升级到与您的插件匹配的版本,只需将此行更改为:
ext.kotlin_version = '1.1.2-3'
编辑(回答下面的问题):
该错误告诉您需要升级您的版本,问题是在哪里可以找到您必须输入 1.1.2-3
而不是说,例如 1.1.2-release-Studio2.3-3
。
查找 Kotlin 最新版本的最佳方法是转到 kotlinlang.org 并查找“最新版本”。应该就在首页。
如果版本号像这样不重要,另一件事是检查托管版本的存储库。对于 Android,您可能会从 jcenter 获得它,您可以找到 repository page,其中列出了所有可用版本。
您还可以通过 here 浏览实际托管文件的 jcenter 的原始 maven 存储库,或者在 mvnrepository 或 mavencentral(后者 here 的原始版本)上查找 Kotlin。
它抱怨(在 Android Studio 3.0.1 上)......很可能是因为引用的库的依赖关系:
您在 'org.jetbrains.kotlin:kotlin-stdlib:1.1.3@jar' 库中的 Kotlin 运行时版本是 1.1.3,而插件版本是 1.1.51-release-Studio3.0-1。
然后我在模块级别 build.gradle
中针对它要求的版本强制构建:
configurations.all() {
resolutionStrategy.force 'org.jetbrains.kotlin:kotlin-stdlib:1.1.51'
}
结果是:
./gradlew app:dependencies | grep kotlin
Download https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.1.51/kotlin-stdlib-1.1.51.pom
| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.1.3 -> 1.1.51
...
您可能需要更新两部分:
项目 kotlin 插件的 kotlin 运行时
Ivo Stoyanov 的回答显示了如何使用 android studio 菜单执行此操作。当我收到错误消息并单独尝试(更新 kotlin 插件)时,它仍然抱怨 kotlin 运行时。正如其他一些答案所示,您可以通过将 ext.kotlin_version 上的行添加到项目构建 gradle 来逐个项目地更新它。但是你需要知道 kotlin 运行时版本。或者,您也可以通过菜单进行操作,如下所示,android studio 会向您显示可用版本,您可以选择最新版本。
https://i.stack.imgur.com/MSrVW.png
https://i.stack.imgur.com/d1g7n.png
https://i.stack.imgur.com/tzphA.png
https://i.stack.imgur.com/EYFVu.png
然后 android studio 将在你的项目 build gradle 中添加适当的行。
将您的 ext.kotlin_version 从 '1.1.2-4' 更改为 ext.kotlin_version = '1.1.2-5' 为我解决了这个问题
kotlin 的最新版本是 1.2.41 使用它并同步你的项目。
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
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
}
}
截至 2019 年 3 月 8 日,当前的 kotlin 版本是 '1.3.21'
在 build.gradle
下
buildscript {
ext.kotlin_version = '1.3.21'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
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 studio 弹出的 kotlin 插件版本时会出现此问题,但问题是当前版本的 Android studio 无法动态更改位于项目级别 Build.gradle 文件中的 kotlin gradle 插件。
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.10"
}
如何解决这个问题?
所以需要手动更改这个版本,可以发现Here
我在 Android Studio 和 IDEA 中遇到过几次这个问题,发现如果您进入项目 Gradle 文件和依赖项,如果您将 kotlin-gradle-plugin
的版本设置为 $kotlin_version
,那么警告消息会告诉您您需要将 ext.kotlin_version
设置为哪个版本。
buildscript {
ext.kotlin_version = '1.2.40'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
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
}
}
https://i.stack.imgur.com/skTRw.png
buildscript {
ext.kotlin_version = '1.2.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
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
}
}
搜索这两行代码
ext.kotlin_version = '1.3.11'
类路径“org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version”
用实际值替换 $kotlin_version(这里是 1.3.11)
类路径“org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.11”
在此之后,您的 IDE 将自动建议您更新版本
快乐编码:)
Kotlin 最新版本:
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.google.gms:google-services:1.5.0-beta2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
有点烦人,但工作室有时会这样做。以下步骤可以解决问题。
去
设置 -> 构建、执行、开发 -> Gradle -> 使用默认的 gradle 包装器(推荐)
将此更改为使用本地并返回使用默认值。 Studio 会在关闭设置窗口后询问是否更新 gradle。
将我的 android studio 从 3.0.1 更新到 3.2.1 后,我遇到了同样的问题。使用它后我的问题得到了解决。
buildscript {
ext.kotlin_version = '1.2.51'
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.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
}
}
我在 Canary 频道的最新 Android Studio 上遇到过这个问题。您可能还需要考虑将 Android Studio 降级为稳定版本。
它发生在我的 Android Studio 3.0 RC1 上。