
The new Tombstone integration leverages Android's ApplicationExitInfo to capture native crashes out-of-process, providing richer crash data than the NDK integration alone. This includes multi-threaded stack traces, Android Runtime frame integration, and client-side symbolication for system libraries — all with safer collection that reduces the risk of crashing during crash handling.

Enable it via AndroidManifest.xml:
<meta-data android:name="io.sentry.tombstone.enable" android:value="true" />
or via SentryOptions:
options.isTombstoneEnabled = true
The integration can work alongside the existing NDK integration for full version coverage, or serve as a standalone replacement if your app doesn't include custom native code.
The integration is available in the Android SDK version 8.32.0 or above.
Check our docs out for more details.