fix(shorebird_cli): support --split-debug-info (#2570)

This commit is contained in:
Felix Angelov
2024-10-23 14:44:13 -05:00
committed by GitHub
parent af8a8d18cb
commit 8b50e3b381
23 changed files with 461 additions and 32 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ echo "base_url: https://api-dev.shorebird.dev" >> shorebird.yaml
APP_ID=$(cat shorebird.yaml | grep 'app_id:' | awk '{print $2}')
# Create a new release on Android
shorebird release android --flutter-version=$FLUTTER_VERSION -v
shorebird release android --flutter-version=$FLUTTER_VERSION --split-debug-info=./build/symbols -v
# Run the app on Android and ensure that the print statement is printed.
while IFS= read line; do
@@ -55,7 +55,7 @@ echo "lib/main.dart is now:"
cat lib/main.dart
# Create a patch
shorebird patch android -v
shorebird patch android --split-debug-info=./build/symbols -v
# Run the app on Android and ensure that the original print statement is printed.
while IFS= read line; do