From 2649a58da81f62a3f0aa51fa6a67ebcc5802e0f5 Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 24 Nov 2025 02:12:00 +0900 Subject: [PATCH] Bump Kotlin to 1.8.22 in example Android settings Update the Kotlin Gradle plugin version in the example Android `settings.gradle` files to `1.8.22` to satisfy Flutter's minimum supported Kotlin version (observed when building on Flutter 3.38.x in CI). This fixes the build-time error indicating the project's Kotlin version is lower than Flutter's required minimum. See CI error and Flutter tool message for context. - https://github.com/droibit/flutter_custom_tabs/actions/runs/19614424383/job/56164953510 --- flutter_custom_tabs/example/android/settings.gradle | 2 +- flutter_custom_tabs_android/example/android/settings.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flutter_custom_tabs/example/android/settings.gradle b/flutter_custom_tabs/example/android/settings.gradle index 7c4ddc9..34bb979 100644 --- a/flutter_custom_tabs/example/android/settings.gradle +++ b/flutter_custom_tabs/example/android/settings.gradle @@ -19,7 +19,7 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "com.android.application" version "8.1.4" apply false - id "org.jetbrains.kotlin.android" version "1.7.10" apply false + id "org.jetbrains.kotlin.android" version "1.8.22" apply false } include ":app" diff --git a/flutter_custom_tabs_android/example/android/settings.gradle b/flutter_custom_tabs_android/example/android/settings.gradle index 7c4ddc9..34bb979 100644 --- a/flutter_custom_tabs_android/example/android/settings.gradle +++ b/flutter_custom_tabs_android/example/android/settings.gradle @@ -19,7 +19,7 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "com.android.application" version "8.1.4" apply false - id "org.jetbrains.kotlin.android" version "1.7.10" apply false + id "org.jetbrains.kotlin.android" version "1.8.22" apply false } include ":app"