Skip to content

Commit 032a648

Browse files
authored
chore: reduce package size (#4353)
1 parent f64ee91 commit 032a648

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

frontend/Makefile.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ script = ['''
225225
echo APP_ENVIRONMENT: ${APP_ENVIRONMENT}
226226
echo ${platforms}
227227
echo ${BUILD_ARCHS}
228+
echo ${BUILD_VERSION}
228229
''']
229230
script_runner = "@shell"
230231

frontend/scripts/makefile/flutter.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,15 @@ script_runner = "@shell"
250250
script = ["""
251251
cd appflowy_flutter/
252252
flutter pub get
253-
flutter build ipa --verbose
253+
flutter build ipa --build-version ${BUILD_VERSION} --split-debug-info=./ --obfuscate --verbose
254254
"""]
255255
script_runner = "@shell"
256256

257257
[tasks.flutter-build-android]
258258
script = ["""
259259
cd appflowy_flutter/
260260
flutter pub get
261-
flutter build apk --split-per-abi --verbose
261+
flutter build apk --split-per-abi --split-debug-info=./ --obfuscate --verbose
262262
"""]
263263
script_runner = "@shell"
264264

0 commit comments

Comments
 (0)