I am currently using Crashlytics to report the crashes taking place in a user device. This is working well and i get a detailed stack trace of the error as well as the user information.
I was wondering if it is possible to use the UncaughtExceptionHandler to first catch the exception, send an apology mail or something to the user from after contacting my smtp server.
Then forwarding the exception to Crashlytics to log it in Fabric
Is it possible to use both of these and handover the uncaughtexception to the crashlytics after the mailing part is done?
Clarification:
I was hoping to use crashlytics as it provides a great ui to group exceptions and log the issues... From what i know, crashlytics itself sets a default uncaughtexceptionhandler... so would using my custom handler collide with the one on crashlytics? can two handlers be used at one time...
I want to do both sending the mail and using crashlytics... Is this even possible?