-
-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sentry-debug-images is not supported on Android and iOS (with a PR) #369
Comments
I saw your gimli-rs/findshlibs#66, so I would say that both should be supported with a simple bump of that crate. |
Ok |
@Swatinem Hi it is merged now. |
PR: #370 |
#370 was merged |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi thanks for the lib! However sentry-debug-images does not support android and ios.
I have made an experiment and it shows nothing. Moreover, looking at code, it uses findshlibs, and the latter has
which reveals that android&ios are not supported.
Thus, how can we symbolize images when the shipped .so file in android is stripped and symbols are removed? (originally I think I could upload unstripped .so file to sentry and let sentry parse it; but now since no loaded .so file information, sentry cannot symbolize it?)
Possible fix: Look at how backtrace symbolizes code, it uses gimli, which uses dl_iterate_phdr on android and _dyld_get_image_name etc on ios. So if we can utilize these, we can get all library information.
The text was updated successfully, but these errors were encountered: