I know how to use UncaughtExceptionHandler within my Application.onCreate to catch unhandled exceptions. But, this handler catches only those exceptions thrown in my UI or main thread. So I have to define a separate handler for every thread in my app.
Is there any way of catching ALL unhandled exceptions in one place?