GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
MIT License
4.13k
stars
341
forks
source link
A gradle task for uploading native debug symbols #1092
Every time an app bundle is uploaded to the play console. We are having to:
Zip the contents of:
app/build/intermediates/merged_native_libs/release/out/lib/ (excluding mips/ and mpis64/ if they are present)
Upload them manually to App Bundle Explorer > Specific Bundle > Downloads > Native debug symbols
I have no idea if theres a better way to get things done or if this step is even important at all. But play console warns that the crash reports may not be that great if this step is skipped
Potential solutions/workarounds
A script to zip the contents of app/build/intermediates/merged_native_libs/release/out/lib/ and upload them to the play console.
Sorry I have no idea if that is even possible
This issue has been automatically marked as stale because it has not had recent
activity. It will be closed if no further activity occurs. Thank you for your
contributions.
Problem description
Every time an app bundle is uploaded to the play console. We are having to:
app/build/intermediates/merged_native_libs/release/out/lib/
(excluding mips/ and mpis64/ if they are present)I have no idea if theres a better way to get things done or if this step is even important at all. But play console warns that the crash reports may not be that great if this step is skipped
Potential solutions/workarounds
A script to zip the contents of
app/build/intermediates/merged_native_libs/release/out/lib/
and upload them to the play console. Sorry I have no idea if that is even possibleAdditional context
None