我已经尝试解决这个问题大约 4 天了,现在一切都很顺利,直到有一天我更新了 android studio,然后应用程序无法构建
我寻找解决方案。 将 kotlin 更新到最新版本 ext.kotlin_version = '2.0.20'。仍然没有答案 应用程序/build.gradle:
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
namespace "trojandc.com.beshoy_nan"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "trojandc.com.beshoy_nan"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion 23
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
}
android/build.gradle:
buildscript {
ext.kotlin_version = '2.0.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
gradle.属性:
org.gradle.jvmargs=-Xmx1536m -Duser.country=US -Duser.language=en
android.useAndroidX=true
android.enableJetifier=true
kotlin.daemon.jvm.options=-Xmx2g
gradle-wrapper.properties:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip
设置.gradle:
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.3.0" apply false
id "org.jetbrains.kotlin.android" version "2.0.20" apply false
}
include ":app"
错误:
失败:构建失败并出现异常。
检测到任务“compileReleaseJavaWithJavac”(1.8) 和“compileReleaseKotlin”(17) 的 JVM 目标兼容性不一致。
考虑使用 JVM 工具链:https://kotl.in/gradle/jvm/toolchain 了解有关 JVM 目标验证的更多信息:https://kotl.in/gradle/jvm/target-validation
使用 --stacktrace 选项运行以获取堆栈跟踪。 使用 --info 或 --debug 选项运行以获得更多日志输出。 使用 --scan 运行以获得完整的见解。 在 https://help.gradle.org 获取更多帮助。
3秒内构建失败 运行 Gradle 任务“assembleRelease”... 3.6s Gradle 任务 assembleRelease 失败,退出代码为 1
您的 gradle 版本已更新到最新版本 8.10,您需要执行以下步骤来解决此问题: 1- 在终端中运行
java --version
命令查看 java 版本,例如我的 java 版本是 21.0.3
2- 转到 https://docs.gradle.org/current/userguide/compatibility.html 并找到与您的 java 版本匹配的 gradle 版本。 我的java版本是21,对应的gradle版本是8.5。 3-转到 android/gradle/wrapper/gradle-wrapper.properties 文件
4-更新最新版本的distributionUrl=https://services.gradle.org/distributions/gradle-8.10-all.zip值,例如, 根据兼容的java版本将值更改为8.10,例如java 21,将其更改为8.5。 这会添加正确的 gradle 版本。完成这些步骤后,运行该项目。它将下载软件包,这将需要很长时间, 然后你会再次收到错误。该错误与 Kotlin 和 Java 不兼容有关。 那么我们来解决Java和Kotlin不兼容的问题 转到应用程序/build.gradle
kotlinOptions {
jvmTarget = JavaVersion.Version_1.8
}
或杆
kotlinOptions{ jvmTarget = 1.8
}
您可以输入, 值 1.8 具有代表性。 Kotlin 选项和compileOptions 应该相同。如果compileOPtions 值为 1.8,则您也应该将 Kotlin 设为 1.8。
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion`enter code here`.VERSION_1_8
}