From 70bafd4127694276028366c6c36595ba1a11600d Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Fri, 26 Jun 2026 12:38:47 +1200 Subject: [PATCH 1/2] feat(dotnet): document Android Native tombstone options Add Native.TombstoneEnabled and Native.ReportHistoricalTombstones to the Android Native Options page, exposed in sentry-dotnet#5226. Co-Authored-By: Claude Opus 4.8 --- .../android/configuration/native-options.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/platforms/dotnet/guides/android/configuration/native-options.mdx b/docs/platforms/dotnet/guides/android/configuration/native-options.mdx index 548e6d2507c0f2..39c3ac06e6a2b8 100644 --- a/docs/platforms/dotnet/guides/android/configuration/native-options.mdx +++ b/docs/platforms/dotnet/guides/android/configuration/native-options.mdx @@ -163,6 +163,24 @@ Enables the [Android NDK integration](/platforms/android/configuration/using-ndk +## 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. + + + +Enables native crash reporting via [tombstones](/platforms/android/configuration/tombstones/). Disabled by default. + + + + + +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. + +See [Historical Tombstones](/platforms/android/configuration/tombstones/#historical-tombstones). + + + ## Networking From 88f050135e89e4b0e541e4b9e363d5f1a82cf299 Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Fri, 26 Jun 2026 12:50:43 +1200 Subject: [PATCH 2/2] Apply suggestion from @jamescrosswell --- .../dotnet/guides/android/configuration/native-options.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/dotnet/guides/android/configuration/native-options.mdx b/docs/platforms/dotnet/guides/android/configuration/native-options.mdx index 39c3ac06e6a2b8..39bc0368aa0df7 100644 --- a/docs/platforms/dotnet/guides/android/configuration/native-options.mdx +++ b/docs/platforms/dotnet/guides/android/configuration/native-options.mdx @@ -165,7 +165,7 @@ Enables the [Android NDK integration](/platforms/android/configuration/using-ndk ## 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. +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 is available when using the Sentry SDK for .NET version 6.7.0 or above.