how to send report to Acralyzer manual

252 Views Asked by At

I am using Acralyzer for reporting of errors (Crash reports) Now I want to manually send a Custom report to Acra. But do not know , how to do ?

1

There are 1 best solutions below

0
Ali Malek On BEST ANSWER

Try this:

try 
{
    // some code
} 
catch (Exception e) {
    ErrorReporter.getInstance().handleException(e);
}