sajjad Yosefi
sajjad Yosefi

Reputation: 190

how to send report to Acralyzer manual

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 ?

Upvotes: 0

Views: 253

Answers (1)

Ali Malek
Ali Malek

Reputation: 722

Try this:

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

Upvotes: 2

Related Questions