Is it possible to incorporate custom UncaughtExceptionHandler along with crashlytics in one application? If yes - how?
Turn off automatic collection
add this to your AndroidManifest.xml
UncaughtExceptionHandler
Thread.setDefaultUncaughtExceptionHandler(customerUncaughtExceptionHandler)
Fabric.with(this, new Crashlytics());