Crashlytics Android SDK - custom UncaughtExceptionHandler
Is it possible to incorporate custom UncaughtExceptionHandler along with crashlytics in one application? If yes - how? kmityak Since recent versions of Crashlytics perform initialization asynchronously, it's better to use Fabric's initialization callback: private static Thread.UncaughtExceptionHandler mDefaultUEH; private static Thread.UncaughtExceptionHandler mCaughtExceptionHandler = new Thread.UncaughtExceptionHandler() { @Override public void uncaughtException(Thread thread, Throwable ex) { // Custom logic goes here // This will make Crashlytics do its job mDefaultUEH.uncaughtException