From 9878a543e51d6b3a0bdf2963d51fb912bdd1d43a Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Tue, 14 Oct 2025 20:42:16 +0200 Subject: [PATCH] android: fix getting stuck in splash screen by disabling shrink --- android/app/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 40d7201..9432b7d 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -35,6 +35,8 @@ android { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig = signingConfigs.getByName("debug") + isShrinkResources = false + // isMinifyEnabled = false // avoid app getting stuck in splash screen } } }