From 115dc5c9a9e3989b44de76890898502e09e3783d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 14:10:04 +0000 Subject: [PATCH] [skill-drift] update(sentry-dotnet-sdk): add Android tombstone options Automated drift-fix run. Co-Authored-By: Claude (claude-sonnet-4-5) --- skills/sentry-dotnet-sdk/SKILL.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/skills/sentry-dotnet-sdk/SKILL.md b/skills/sentry-dotnet-sdk/SKILL.md index 36f120fb..b1119b5c 100644 --- a/skills/sentry-dotnet-sdk/SKILL.md +++ b/skills/sentry-dotnet-sdk/SKILL.md @@ -505,6 +505,15 @@ For each feature: read the reference file, follow its steps exactly, and verify | `IncludeTitleInBreadcrumbs` | `bool` | `false` | Titles from `Window`, `Page` elements. ⚠️ PII risk. | | `IncludeBackgroundingStateInBreadcrumbs` | `bool` | `false` | `Window.Backgrounding` event state. ⚠️ PII risk. | +### Android Native Options (`SentryOptions.Native`) + +Available when targeting Android via MAUI or Xamarin. Access via `options.Native.PropertyName`. + +| Option | Type | Default | Notes | +|--------|------|---------|-------| +| `TombstoneEnabled` | `bool` | `false` | Enables native crash reporting via tombstones. See [Android Tombstone docs](https://docs.sentry.io/platforms/android/configuration/tombstones/). | +| `ReportHistoricalTombstones` | `bool` | `false` | Reports historical tombstones from previous app runs. Requires `TombstoneEnabled = true`. | + ### Environment Variables | Variable | Purpose |