In my Android app I have tried to put Try Catch
blocks in all possible places. However I want to avoid the crashing of the app due to any unhandled errors. How can I achieve that?
I have used Thread.setDefaultUncaughtExceptionHandler(handler);
but that will just help me to obtain crash- data right?