I need to integrate Firebase Crashlytics into my custom UncaughtExceptionHandler
I tried the solution here, but I ended up not having my custom handler called.
This is what I originally had to use my custom handler in my MainActivity
Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler(this));
Adding Crashlytics.logException(exception)
would only result in loggin non-fatal error, while I need to log normal errors.
Note: Logging with Crashlytics.logException(exception)
worked only once for me so far, while it didn't appear on the dashboard many other times although the log in the IDE showed it was uploaded, even after the next app startup.
My main question: Can I log normal crash and have my own custom UncaughtExceptionHandler
implemented?