0

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 ?

sajjad Yosefi
  • 190
  • 2
  • 12

1 Answers1

2

Try this:

try 
{
    // some code
} 
catch (Exception e) {
    ErrorReporter.getInstance().handleException(e);
}
Ali Malek
  • 578
  • 8
  • 26