From 390bb1c22b8356318c15116708512d4e63fdd86d Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 19:53:01 -0800 Subject: [PATCH] =?UTF-8?q?fix(android):=20=E9=99=8D=E7=BA=A7=20Kotlin=20?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E8=87=B3=201.9.22=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sentry_flutter 插件不兼容 Kotlin 2.2.20,降级到稳定版本 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/mobile-app/android/settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mobile-app/android/settings.gradle.kts b/frontend/mobile-app/android/settings.gradle.kts index 4dcef4bf..a6ac1583 100644 --- a/frontend/mobile-app/android/settings.gradle.kts +++ b/frontend/mobile-app/android/settings.gradle.kts @@ -20,7 +20,7 @@ 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.2.20" apply false + id("org.jetbrains.kotlin.android") version "1.9.22" apply false } include(":app")