Replies: 1 comment
-
Updated original post with the codemagic.yaml script we use that is verified working. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Use case
See https://github.com/orgs/codemagic-ci-cd/discussions/2900#discussioncomment-11818663.
TLDR: When Flutter apps use obfucation the debug symbols are not included in the
.aab
due to a long standing issue. This requires developers to manually generate and upload a zip file every time they want to release a build (or risk not getting readable logs/Crashylytics).This is a very prevalent complaint:
Idea
First a script can be used to generate the debug symbols zip:
Then we can utilize the Google Play Developer API upload endpoint to upload this zip to the Play store. Note that we will need to specify
deobfuscationFileType=nativeCode
when calling this endpoint.Beta Was this translation helpful? Give feedback.
All reactions