core Exception Bridging Enabled
Sets whether core crashes (panics) should be raised as JVM exceptions.
To get a full readable stack trace from the core crash, ensure debug symbols are not stripped during the build.
Example for Gradle:
android {
packagingOptions {
jniLibs {
useLegacyPackaging = true
keepDebugSymbols.add("**\/libdittoffi.so")
}
}
}Content copied to clipboard
Note: Whilst enabling coreExceptionBridgingEnabled, in and of itself, does not affect binary size nor performance, do note that keeping the debug symbols (as shown) ought only to be done for Debug builds, since it may result in an increase of the size of the app by ~30MB.