Skip to main content

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

ConstantManifest keyTypeDefault
NdkOptions.DetectAndReportcom.bugsee.option.detect.crash-ndkbooleantrue (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;
<meta-data android:name="com.bugsee.option.detect.crash-ndk"
android:value="false" />

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 →