Closed markushi closed 6 days ago
Messages | |
---|---|
:book: | Do not forget to update Sentry-docs with your feature once the pull request gets approved. |
Generated by :no_entry_sign: dangerJS against b5d3b8325d7da759297afbca91c638e8f03b119e
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 82.34%. Comparing base (
d8230a8
) to head (b5d3b83
). Report is 1 commits behind head on master.
🚨 Try these New Features:
sentry-java
7.x
loads the.so
libraries using a background thread, see https://github.com/getsentry/sentry-java/pull/3670Instead of porting this behaviour 1:1 to
sentry-native
, I'm proposing a new.loadNativeLibraries()
method, allowing you to pre-load the libraries if necessary. It's up to the consumer, like sentry-java8.x
to use this method, and e.g. call it on a background thread.This is a change in behaviour, as the
.so
files no longer get loaded during class init.