Configuration — NDK extension (7.x Beta)
7.x Beta
Native crash detection is shipped as the bugsee-android-ndk extension module. The core SDK doesn't include it — see Native crashes for installation.
The NDK extension currently exposes a single runtime option — the master switch for native crash detection.
Options
| Constant | Manifest key | Type | Default |
|---|---|---|---|
NdkOptions.DetectAndReport | com.bugsee.option.detect.crash-ndk | boolean | true (when the bugsee-android-ndk module is on the classpath) |
The default flips to true automatically once the extension is added — no extra flag to flip after the dependency. The example below shows the opt-out form. The programmatic constant lives in the extension's own package:
import com.bugsee.library.ndk.contracts.options.NdkOptions;
- AndroidManifest.xml
- Programmatic
<meta-data android:name="com.bugsee.option.detect.crash-ndk"
android:value="false" />
HashMap<String, Object> options = new HashMap<>();
options.put(NdkOptions.DetectAndReport, false);
Bugsee.launch(this, "<APP_TOKEN>", options);
For the full setup walkthrough — adding the extension, native-symbol upload, tombstone matching — see the dedicated Native crashes page.
Found an issue, typo, or wrong statement on this page? Report it now →