Commit 232dd11

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2023-10-11 14:46:48
document code obfuscation
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent c905b96
Changed files (1)
RELEASE.md
@@ -5,6 +5,9 @@ App release checklist
 - [ ] create changelog
 - [ ] update version in pubspec.yaml and android/app/build.gradle
 - [ ] verify no tests fail
-- [ ] compile apk `flutter build apk --release --flavor github`
-- [ ] compile play-store `flutter build appbundle --release --flavor github`
+- [ ] compile apk `flutter build apk --release --flavor github --obfuscate --split-debug-info=./build/debug-info`
+- [ ] compile play-store `flutter build appbundle --release --flavor github --obfuscate --split-debug-info=./build/debug-info`
 - [ ] test if app update works in vm
+
+
+Compiling the app with obfuscation reduces app size by multiple megabytes. [This makes reading crashes and stack traces a bit harder](https://docs.flutter.dev/deployment/obfuscate#read-an-obfuscated-stack-trace).
\ No newline at end of file