chore: reduce package size (#4353)

This commit is contained in:
Lucas.Xu 2024-01-11 20:45:20 +07:00 committed by GitHub
parent f64ee912d0
commit 032a648204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -225,6 +225,7 @@ script = ['''
echo APP_ENVIRONMENT: ${APP_ENVIRONMENT}
echo ${platforms}
echo ${BUILD_ARCHS}
echo ${BUILD_VERSION}
''']
script_runner = "@shell"

View File

@ -250,7 +250,7 @@ script_runner = "@shell"
script = ["""
cd appflowy_flutter/
flutter pub get
flutter build ipa --verbose
flutter build ipa --build-version ${BUILD_VERSION} --split-debug-info=./ --obfuscate --verbose
"""]
script_runner = "@shell"
@ -258,7 +258,7 @@ script_runner = "@shell"
script = ["""
cd appflowy_flutter/
flutter pub get
flutter build apk --split-per-abi --verbose
flutter build apk --split-per-abi --split-debug-info=./ --obfuscate --verbose
"""]
script_runner = "@shell"