From caed233840e09304ce9875f9a3ba0b89cd2aa0cd Mon Sep 17 00:00:00 2001 From: Salvatore Testa Date: Sun, 1 Oct 2023 16:00:59 -0700 Subject: [PATCH] Remove shrink and minifying from Android release There's probably a better way to do this, but something about the shrinking/minifying is messing with the app. Closes https://gitlab.com/veilid/veilidchat/-/issues/7 --- android/app/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index f0dc01b..93e54a4 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -57,6 +57,8 @@ android { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. + shrinkResources false + minifyEnabled false signingConfig signingConfigs.debug } }