Crashlytics doesn't catch SIGSEGV in Android

969 views Asked by At

Today we found that Crashlytics don't catch SIGSEGV crashes, but google play console does. We were quite surprised to see many of such crashes in play console.

We want to have our crash reporting in one place. Can we catch SIGSEGV crashes with crashlytics?

1

There are 1 answers

0
Alexizamerican On BEST ANSWER

The standard Android Crashlytics SDK catches Java crashes. Since SIGSEGV is a native crash you'll also need to include the Crashlytics NDK SDK, whether the SIGSEGV originates in an app's native libraries or third-party libraries. Check out https://fabric.io/downloads/gradle (with the NDK toggle switch on) for setup instructions.