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
This commit is contained in:
Salvatore Testa 2023-10-01 16:00:59 -07:00
parent 268b86d131
commit caed233840
No known key found for this signature in database

View File

@ -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
}
}