upgrade android deps

This commit is contained in:
Fabian Freund
2026-02-06 05:31:14 +01:00
parent 004efa3cfb
commit d7e635782b
19 changed files with 32 additions and 25 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
plugins {
id "com.android.application"
id "kotlin-android"
id "org.jetbrains.kotlin.plugin.compose" version "2.1.20"
id "org.jetbrains.kotlin.plugin.compose" version "2.2.20"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin"
}
+8 -1
View File
@@ -5,7 +5,7 @@ ext {
}
buildscript {
ext.kotlin_version = '2.1.20'
ext.kotlin_version = '2.2.20'
}
allprojects {
@@ -20,6 +20,13 @@ allprojects {
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
afterEvaluate {
if (it.hasProperty("android")) {
android {
compileSdkVersion 36
}
}
}
}
subprojects {
project.evaluationDependsOn(":app")
+1 -1
View File
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
+2 -2
View File
@@ -18,8 +18,8 @@ pluginManagement {
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version '8.11.1' apply false
id "org.jetbrains.kotlin.android" version "2.1.20" apply false
id "com.android.application" version '8.13.2' apply false
id "org.jetbrains.kotlin.android" version "2.2.20" apply false
}
include ":app"