Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions docs/platforms/dart/guides/flutter/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,14 @@ Set this boolean to `false` to disable the scope sync from Java to NDK on Androi

</SdkOption>

<SdkOption name="enableTombstone" type="bool" defaultValue="false">

Set this boolean to `true` to enable [Tombstone-based native crash reporting](/platforms/android/configuration/tombstones/) on Android 12+ (API level 30+). When enabled, uses Android's `ApplicationExitInfo.REASON_CRASH_NATIVE` to capture native crashes with more detailed thread information.

This provides improved stack traces and richer crash context compared to the standard NDK integration alone. The SDK will merge reports from both integrations when applicable.

</SdkOption>

<SdkOption name="attachThreads" type="bool" defaultValue="false">

Set this boolean to `true` to automatically attach all threads to all logged events on Android.
Expand Down
8 changes: 8 additions & 0 deletions docs/platforms/react-native/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,14 @@ Set this boolean to `false` to disable the scope sync from Java to NDK on Androi

</SdkOption>

<SdkOption name="enableTombstone" type="boolean" defaultValue="false">

Set this boolean to `true` to enable [Tombstone-based native crash reporting](/platforms/android/configuration/tombstones/) on Android 12+ (API level 30+). When enabled, uses Android's `ApplicationExitInfo.REASON_CRASH_NATIVE` to capture native crashes with more detailed thread information.

This provides improved stack traces and richer crash context compared to the standard NDK integration alone. The SDK will merge reports from both integrations when applicable.

</SdkOption>

<SdkOption name="attachThreads" type="boolean" defaultValue="false">

Set this boolean to `true` to automatically attach all threads to all logged events on Android.
Expand Down