Skip to content

Commit 3fe0687

Browse files
committed
upgrade: bump Android NDK version to 28.0.13004108, Kotlin to 2.1.10, Gradle version to 8.12.1
1 parent 95637b5 commit 3fe0687

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ gradle.taskGraph.whenReady {
3939
android {
4040
compileSdkVersion 35
4141

42-
ndkVersion "28.0.12674087"
42+
ndkVersion "28.0.13004108"
4343

4444
sourceSets {
4545
main.java.srcDirs += 'src/main/kotlin'

android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ subprojects {
3636
}
3737
}
3838

39-
// override the kotlin language version for each dependencies to 2.1.0
39+
// override the kotlin language version for each dependencies to 2.1.10
4040
configurations.all {
4141
resolutionStrategy.eachDependency { details ->
4242
if (details.requested.group == 'org.jetbrains.kotlin' && details.requested.name == 'kotlin-gradle-plugin') {
43-
details.useVersion '2.1.0'
43+
details.useVersion '2.1.10'
4444
}
4545
}
4646
}

android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https://services.gradle.org/distributions/gradle-8.12-bin.zip
6+
distributionUrl=https://services.gradle.org/distributions/gradle-8.12.1-bin.zip

android/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2121
id "com.android.application" version "8.8.0" apply false
22-
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
22+
id "org.jetbrains.kotlin.android" version "2.1.10" apply false
2323
}
2424

2525
include ":app"

0 commit comments

Comments
 (0)