More flutter upgrades
Build Docker and Deploy / Build Docker Container (push) Successful in 1m4s
Build Docker and Deploy / Run Unit-Tests (push) Successful in 7m40s
Build Docker and Deploy / Deploy to Server (push) Successful in 7s

This commit is contained in:
2026-05-31 04:49:17 +02:00
parent bb34f3b2b4
commit bff8257f34
2 changed files with 13 additions and 5 deletions
+9 -5
View File
@@ -3,7 +3,9 @@ plugins {
// START: FlutterFire Configuration // START: FlutterFire Configuration
id 'com.google.gms.google-services' id 'com.google.gms.google-services'
// END: FlutterFire Configuration // END: FlutterFire Configuration
id "kotlin-android" // Kotlin is provided by Flutter's built-in Kotlin support (the flutter-gradle-plugin
// auto-applies kotlin-android). KGP stays declared in settings.gradle so it remains
// on the classpath. See https://docs.flutter.dev/release/breaking-changes/migrate-to-built-in-kotlin/for-app-developers
id "dev.flutter.flutter-gradle-plugin" id "dev.flutter.flutter-gradle-plugin"
} }
@@ -42,10 +44,6 @@ android {
targetCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17
} }
kotlinOptions {
jvmTarget = '17'
}
sourceSets { sourceSets {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
@@ -75,6 +73,12 @@ android {
} }
} }
kotlin {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
}
}
flutter { flutter {
source '../..' source '../..'
} }
+4
View File
@@ -1,3 +1,7 @@
org.gradle.jvmargs=-Xmx4G org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
# This builtInKotlin flag was added automatically by Flutter migrator
android.builtInKotlin=false
# This newDsl flag was added automatically by Flutter migrator
android.newDsl=false