wthierry
wthierry

Reputation: 21

ACRA seems to be reporting crashes from Handled exceptions

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

Answers (1)

William
William

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

Related Questions