Is it possible to send custom data with ARR despite being a throttle?
I have seen
ACRA.getErrorReporter (). It is possible to add custom crash data using PutCustomData ()
but data will only be sent when there will be exceptions.
An intent is to do this on which I am working, which uses the webview and I want to send javascript errors as well as to native people.
I have just found the way, Will give zero as, for example: code> ACRA.getErrorReporter (). PutCustomData ("myKey", "myValue"); . ACRA.getErrorReporter () handleException (zero);
These 2 lines will report this error:
java.lang.Exception: Report requested by the developer
In the form of custom data in the report as follows:
{myKey: myValue}
Comments
Post a Comment