Skip to content

Commit 9b95628

Browse files
authored
Merge pull request #154 from akaMrNagar/dev
Fixed: Unable to find debug symbols directory
2 parents bbd3c43 + 063907e commit 9b95628

File tree

4 files changed

+5
-668
lines changed

4 files changed

+5
-668
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: flutter pub get
5252

5353
- name: Build AAB
54-
run: flutter build appbundle --release
54+
run: flutter build appbundle --release --split-debug-info=build/app/outputs/symbols/release
5555

5656
- name: Upload AAB to Play Store
5757
id: upload_google_play
@@ -62,7 +62,7 @@ jobs:
6262
inAppUpdatePriority: ${{ secrets.UPDATE_PRIORITY }} # Between 0-5 => Higher the number, higher the priority.
6363
releaseFiles: build/app/outputs/bundle/release/app-release.aab
6464
mappingFile: build/app/outputs/mapping/release/mapping.txt
65-
debugSymbols: build/app/intermediates/merged_native_libs/release/out/lib
65+
debugSymbols: build/app/outputs/symbols/release
6666
track: internal
6767
status: draft
6868
# changesNotSentForReview: ${{ secrets.DONT_SEND_CHANGES_FOR_REVIEW }} # true or false

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ app.*.map.json
4646
/android/app/profile
4747
/android/app/release
4848
/android/app/.cxx/
49-
49+
/android/build

0 commit comments

Comments
 (0)