I am trying to implement a crash log reporting library in Android like Crashlytics, ACRA. At the preliminary phase, I was able to get Uncaught Exception log using Thread.UncaughtExceptionHandler
which is working fine.
For handling Caught Exceptions, One of the above mentioned two libraries use a single line at every catch block which can be painful for a large project. Is there any way to get the log of caught exception like the uncaught one in a single place?
P.S. I also used both libraries and they are really good crash reporting mechanisms. My point was not to criticize those rather finding a better way if possible. Thanks.