Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,24 @@ Enables the [Android NDK integration](/platforms/android/configuration/using-ndk

</SdkOption>

## Tombstones

The [Tombstone Integration](/platforms/android/configuration/tombstones/) generates events for native crashes based on the tombstone data that Android attaches to `ApplicationExitInfo` on Android 12 and later. It requires Sentry Android SDK 8.32.0 or above.
Comment thread
jamescrosswell marked this conversation as resolved.
Outdated

<SdkOption name="Native.TombstoneEnabled" type="bool" defaultValue="false">

Enables native crash reporting via [tombstones](/platforms/android/configuration/tombstones/). Disabled by default.

</SdkOption>

<SdkOption name="Native.ReportHistoricalTombstones" type="bool" defaultValue="false">

When enabled, the SDK reports all historical tombstones from Android's exit reasons list, not just the latest one. Disabled by default. Historical tombstones receive only minimal enrichment, as the available data is likely out of sync.
Comment thread
Flash0ver marked this conversation as resolved.
Outdated
Comment thread
jamescrosswell marked this conversation as resolved.
Outdated

See [Historical Tombstones](/platforms/android/configuration/tombstones/#historical-tombstones).
Comment thread
jamescrosswell marked this conversation as resolved.
Outdated

</SdkOption>

## Networking

<SdkOption name="Native.ConnectionTimeout" type="TimeSpan" defaultValue="TimeSpan.FromSeconds(5)">
Expand Down
Loading