From 50c6bec4cda66816ce535d2687df02581a95353b Mon Sep 17 00:00:00 2001 From: nyne Date: Thu, 4 Sep 2025 00:30:01 +0800 Subject: [PATCH] Disable minify --- android/app/build.gradle | 3 +++ android/settings.gradle | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index f296899..67a1874 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -78,6 +78,9 @@ android { buildTypes { release { + // Temporarily solution to fix crash + minifyEnabled false + shrinkResources false ndk { abiFilters "armeabi-v7a", "arm64-v8a", "x86_64" } diff --git a/android/settings.gradle b/android/settings.gradle index 3d1ac22..c9d2ac4 100644 --- a/android/settings.gradle +++ b/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.9.0' apply false - id "org.jetbrains.kotlin.android" version "1.8.10" apply false + id "org.jetbrains.kotlin.android" version "2.1.0" apply false } include ":app"