From eb95b857ba0a9714ea78826f5c6edc70548cd90f Mon Sep 17 00:00:00 2001 From: Alex Fishman Date: Fri, 4 Sep 2026 17:45:46 -0700 Subject: [PATCH] docs(android): fix stale NdkOptions import path in native-crashes.mdx The prose and code import both pointed at the deprecated com.bugsee.library.ndk.contracts.options.NdkOptions path. configuration/ndk.mdx already documents the real path, com.bugsee.library.contracts.options.NdkOptions, and explicitly calls the old path a deprecated compatibility alias. This page wasn't updated to match, so it re-taught the exact mistake that was already corrected elsewhere. Co-Authored-By: Claude Sonnet 5 --- docs/sdk/android/issue-detection/native-crashes.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sdk/android/issue-detection/native-crashes.mdx b/docs/sdk/android/issue-detection/native-crashes.mdx index 02ca068..b3adf52 100644 --- a/docs/sdk/android/issue-detection/native-crashes.mdx +++ b/docs/sdk/android/issue-detection/native-crashes.mdx @@ -61,7 +61,7 @@ The extension auto-registers its detection provider at process start via its own | `Bugsee.launch()` map | `options.put(NdkOptions.DetectAndReport, false)` | | Default | `true` (when the `bugsee-android-ndk` module is on the classpath) | -The default flips to `true` once you add the extension — there is no second knob to flip after the dependency. The example below shows the *opt-out* form. The programmatic constant lives in the extension's own package: `com.bugsee.library.ndk.contracts.options.NdkOptions`. +The default flips to `true` once you add the extension — there is no second knob to flip after the dependency. The example below shows the *opt-out* form. The programmatic constant lives in the shared contracts package: `com.bugsee.library.contracts.options.NdkOptions`. @@ -75,7 +75,7 @@ The default flips to `true` once you add the extension — there is no second kn ```java -import com.bugsee.library.ndk.contracts.options.NdkOptions; +import com.bugsee.library.contracts.options.NdkOptions; HashMap options = new HashMap<>(); options.put(NdkOptions.DetectAndReport, false);