Skip to content

Commit

Permalink
enable split debug info again
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed Nov 9, 2024
1 parent 0e92233 commit 20b7531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build_android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
ANDROID_KEY_JKS: ${{ inputs.android-key-jks }}
- name: Build APK
shell: bash
run: flutter build apk --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=cronetHttpNoPlay=true
run: flutter build apk --split-debug-info=./symbols --obfuscate --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=cronetHttpNoPlay=true
env:
VERSION: ${{ inputs.version }}
BUILD_NUMBER: ${{ inputs.build-number }}
Expand All @@ -56,7 +56,7 @@ runs:
#SENTRY_URL: ${{ inputs.sentry-url }}
- name: Build AppBundle
shell: bash
run: flutter build appbundle --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=cronetHttpNoPlay=true
run: flutter build appbundle --split-debug-info=./symbols --obfuscate --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=cronetHttpNoPlay=true
env:
VERSION: ${{ inputs.version }}
BUILD_NUMBER: ${{ inputs.build-number }}
Expand Down

0 comments on commit 20b7531

Please sign in to comment.