Search code examples
crashlyticscrashlytics-android

Can I use Crashlytics only for C++ crash reporting?


I have an app with Java and C++ code. Is it possible for me to only use Crashlytics to catch C++ crashes and not Java crashes? I tried using Fabric.with(this, new CrashlyticsNdk()); but that gives me an error about Crashlytics needing to be initialized.

Edit: I don't mind using Crashlytics for Java crashes, but management is hard to convince. As far as they're concerned, our existing crash reporting solution works for Java crashes (but it doesn't work too well for native crashes) so the 'ideal' solution is to use Crashlytics only for C++ crashes.


Solution

  • Mike from Firebase here. No, the NDK SDK needs to have Crashlytics present in order to report everything correctly.