As part of building our Android app I can see ProGuard mappings are uploaded to Sentry, thus the Gradle plugin and Sentry auth token seem to be set up correctly. The mappings show up on sentry.io under “Debug Files”.
However, when issues with stack traces are sent to Sentry (in this case an uncaught exception), I see obfuscated stack traces and I do not see an option to see ‘symbolicated’ stack traces as per the documentation.
When looking at the raw JSON of the event, I notice no debug image is configured; judging by reading the Sentry dev documentation, I have the impression there should be a uuid
set, corresponding to the uploaded ProGuard mapping, which is not there.
I therefore expect this missing information is why the events cannot be symbolicated, but I do not know how to verify this. E.g., I cannot manipulate the events to add this data, and the documentation on Sentry configuration for Android does not indicate any extra work to make this work.
What could be the cause for this not working? How do I investigate further?