您的项目需要更新版本的 Kotlin Gradle 插件。 (Android 工作室)
Your project requires a newer version of the Kotlin Gradle plugin. (Android Studio)
我刚刚将我的 flutter 项目包更新为空安全兼容,现在 Android Studio 希望我更新我的项目以使用最新版本的 Kotling Gradle 插件。虽然看不到在哪里更改它。我试图将 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
更改为 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10"
但这没有效果。
我的 build.grade
文件如下所示:
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
compileSdkVersion 31
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "*********"
minSdkVersion 30
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-analytics:17.2.2'
}
apply plugin: 'com.google.gms.google-services'
构建输出:
BUILD FAILED in 8s
[!] Your project requires a newer version of the Kotlin Gradle plugin.
Find the latest version on https://kotlinlang.org/docs/gradle.html#plugin-and-versions, then update project/android/build.gradle:
ext.kotlin_version = '<latest-version>'
Exception: Gradle task assembleDebug failed with exit code 1
将构建 gradle 更改为:
classpath 'com.android.tools.build:gradle:4.1.0'
和gradle-wrapper到这个:
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
您需要更改 android 根项目 projectName/android/build.gradle
中的 kotlin 版本,而不是 projectName/android/app/build.gradle
。
更改 ext.kotlin_version
行的版本:
buildscript {
ext.kotlin_version = '1.6.10' // Change here
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
更新
如果您的 android 部分项目使用 java,其中依赖项使用 kotlin,并且您遇到以下错误,则上述解决方案也适用:
Incompatible classes were found in dependencies. Remove them from the classpath or use '-Xskip-metadata-version-check' to suppress errors
e: /home/user/.gradle/caches/transforms-3/36814238b86d8b6b6f9e4e1263bce879/transformed/jetified-kotlinx-coroutines-core-jvm-1.5.2.jar!/META-INF/kotlinx-coroutines-core.kotlin_module:
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.
如果kotlin与IDE.
中安装的kotlin不一致,AndroidStudio或IntelliJ Idea会在项目build.grade
文件中给出提示
就我而言,我没有在我的 flutter 项目中使用 kotlin,但是我的一些依赖项使用了它(对我来说是 assets_audio_player
),所以我不得不去 build.gradle
对于该依赖项并在此处更新 kotlin 版本作为其他答案:
ext.kotlin_version = '<latest-version>'
注意 1: 您可以通过在 Android Studio 中打开 android 模块来为您想要的库打开 build.gradle
然后转到Gradle Scripts
来自“项目”选项卡。
注2:您可以通过查看来了解是哪个库导致了错误:
Execution failed for task ':assets_audio_player:compileDebugKotlin'.
可能不止一个库,所以当你改变kotlin版本后错误会改变。
我更新 Flutter 到 2.10.1
我发现我所有的项目都有同样的错误
在应用程序中 /build.gradl
你改成 ext.kotlin_version = '1.6.10'
将您的 Kotlin 更新到最新版本。你可以在这里看到最新版本
ext.kotlin_version = '1.6.10' //
您可以从下面看到最新版本的Kotlin link
https://kotlinlang.org/docs/gradle.html#plugin-and-versions
在您的项目中添加最新的 kotlin 版本
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}
也许其他人遇到了我在升级 flutter 后遇到的问题:
如果将 flutter 与 aws_amplify 一起使用,则还必须升级 amplify。这是我遇到的相同错误消息的问题。
在 project-level build.gradle
文件中将构建 gradle 版本更改为 4.1.0 或更高版本:
classpath 'com.android.tools.build:gradle:4.1.0'
在 gradle-wrapper.properties
文件中将 gradle 包装器版本更改为 6.7-all 或更高版本:
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
在项目级别 build.gradle
文件中将 ext.kotlin_version
更改为 1.6.10 或更高版本:
buildscript {
ext.kotlin_version = '1.6.10' // Change like this
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
我刚刚将我的 flutter 项目包更新为空安全兼容,现在 Android Studio 希望我更新我的项目以使用最新版本的 Kotling Gradle 插件。虽然看不到在哪里更改它。我试图将 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
更改为 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10"
但这没有效果。
我的 build.grade
文件如下所示:
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
compileSdkVersion 31
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "*********"
minSdkVersion 30
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-analytics:17.2.2'
}
apply plugin: 'com.google.gms.google-services'
构建输出:
BUILD FAILED in 8s
[!] Your project requires a newer version of the Kotlin Gradle plugin.
Find the latest version on https://kotlinlang.org/docs/gradle.html#plugin-and-versions, then update project/android/build.gradle:
ext.kotlin_version = '<latest-version>'
Exception: Gradle task assembleDebug failed with exit code 1
将构建 gradle 更改为:
classpath 'com.android.tools.build:gradle:4.1.0'
和gradle-wrapper到这个:
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
您需要更改 android 根项目 projectName/android/build.gradle
中的 kotlin 版本,而不是 projectName/android/app/build.gradle
。
更改 ext.kotlin_version
行的版本:
buildscript {
ext.kotlin_version = '1.6.10' // Change here
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
更新
如果您的 android 部分项目使用 java,其中依赖项使用 kotlin,并且您遇到以下错误,则上述解决方案也适用:
Incompatible classes were found in dependencies. Remove them from the classpath or use '-Xskip-metadata-version-check' to suppress errors
e: /home/user/.gradle/caches/transforms-3/36814238b86d8b6b6f9e4e1263bce879/transformed/jetified-kotlinx-coroutines-core-jvm-1.5.2.jar!/META-INF/kotlinx-coroutines-core.kotlin_module:
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.
如果kotlin与IDE.
中安装的kotlin不一致,AndroidStudio或IntelliJ Idea会在项目build.grade
文件中给出提示
就我而言,我没有在我的 flutter 项目中使用 kotlin,但是我的一些依赖项使用了它(对我来说是 assets_audio_player
),所以我不得不去 build.gradle
对于该依赖项并在此处更新 kotlin 版本作为其他答案:
ext.kotlin_version = '<latest-version>'
注意 1: 您可以通过在 Android Studio 中打开 android 模块来为您想要的库打开 build.gradle
然后转到Gradle Scripts
来自“项目”选项卡。
注2:您可以通过查看来了解是哪个库导致了错误:
Execution failed for task ':assets_audio_player:compileDebugKotlin'.
可能不止一个库,所以当你改变kotlin版本后错误会改变。
我更新 Flutter 到 2.10.1
我发现我所有的项目都有同样的错误
在应用程序中 /build.gradl
你改成 ext.kotlin_version = '1.6.10'
将您的 Kotlin 更新到最新版本。你可以在这里看到最新版本
ext.kotlin_version = '1.6.10' //
您可以从下面看到最新版本的Kotlin link https://kotlinlang.org/docs/gradle.html#plugin-and-versions
在您的项目中添加最新的 kotlin 版本
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}
也许其他人遇到了我在升级 flutter 后遇到的问题: 如果将 flutter 与 aws_amplify 一起使用,则还必须升级 amplify。这是我遇到的相同错误消息的问题。
在 project-level
build.gradle
文件中将构建 gradle 版本更改为 4.1.0 或更高版本:classpath 'com.android.tools.build:gradle:4.1.0'
在
gradle-wrapper.properties
文件中将 gradle 包装器版本更改为 6.7-all 或更高版本:distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
在项目级别
build.gradle
文件中将ext.kotlin_version
更改为 1.6.10 或更高版本:buildscript { ext.kotlin_version = '1.6.10' // Change like this repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:4.1.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }