OWASP-BLT / BLT-Flutter

The official OWASP BLT App repository/ Heist 'em bugs!
https://owasp.org/www-project-bug-logging-tool/
BSD 3-Clause "New" or "Revised" License
22 stars 28 forks source link

Sentry has identified the following problems for you to fix A required debug information file was missing (1) #385

Open DonnieBLT opened 5 months ago

DonnieBLT commented 5 months ago

image

Dante291 commented 5 months ago

@DonnieBLT this is what I got from GPT4

To resolve this issue, you will need to provide Sentry with the debug symbols that correspond to this build of your application. If you're working with an iOS app, this would typically be the dSYM files, and for Android, it could be Proguard mapping files or native symbols if you are using NDK.

You would generally do this by uploading the debug information files to Sentry either manually or through an automated process as part of your CI/CD pipeline. The exact steps can vary depending on the platform your application is running on and the build tools you are using. Check Sentry's documentation for more detailed instructions related to your specific environment and make sure to automate this process to avoid similar issues in the future.

DonnieBLT commented 5 months ago

Cool let's build this into the pipeline. Thank you!