We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For uses cases where sentry-native is initialized manually, both scope sync and the debug images loader need to manually configured.
sentry-native
Whilst adding the Scope observer works just fine:
options.addScopeObserver(new NdkScopeObserver(options));
Setting our default DebugImagesLoader doesn't work, as the class is package private.
DebugImagesLoader
options.setDebugImagesLoader(new DebugImagesLoader(options, new NativeModuleListLoader()));
Either expose a way to use the NDK without auto-init, or open up the DebugImagesLoader for public.
The text was updated successfully, but these errors were encountered:
Let's add a comment to the class description that this requires manually initializing the SDK.
Sorry, something went wrong.
stefanosiano
Successfully merging a pull request may close this issue.
Problem Statement
For uses cases where
sentry-native
is initialized manually, both scope sync and the debug images loader need to manually configured.Whilst adding the Scope observer works just fine:
Setting our default
DebugImagesLoader
doesn't work, as the class is package private.Solution Brainstorm
Either expose a way to use the NDK without auto-init, or open up the
DebugImagesLoader
for public.The text was updated successfully, but these errors were encountered: