Disable minify

This commit is contained in:
2025-09-04 00:30:01 +08:00
parent 8c44f83d6c
commit 50c6bec4cd
2 changed files with 4 additions and 1 deletions

View File

@@ -78,6 +78,9 @@ android {
buildTypes { buildTypes {
release { release {
// Temporarily solution to fix crash
minifyEnabled false
shrinkResources false
ndk { ndk {
abiFilters "armeabi-v7a", "arm64-v8a", "x86_64" abiFilters "armeabi-v7a", "arm64-v8a", "x86_64"
} }

View File

@@ -19,7 +19,7 @@ pluginManagement {
plugins { plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version '8.9.0' apply false 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" include ":app"