Reputation: 21
We have been using ACRA to report crashes in our app, however it seems sometimes it reports crashes where we have already handled exceptions in code. Is this a feature of ACRA, and if so, can we set it to ignore handled exceptions? Thanks.
Upvotes: 0
Views: 47
Reputation: 20196
It is not possible for ACRA to react to handled Exceptions. You must be mistaken.
The only way that ACRA could be forwarding on handled Exceptions is if you have explicitly invoked ACRA.getErrorReporter().handleException(e)
Otherwise ACRA only receives notifications from the System UncaughtExceptionhandler.
Upvotes: 1