Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 703 Bytes

README.textile

File metadata and controls

22 lines (13 loc) · 703 Bytes

Johnny Crash

Purpose

This is meant to receive errors delivered by Android apps using https://github.com/ACRA/acra.

Server Side Installation

Don’t forget to copy config/authentication.yml.example and adapt config/authentication.yml

Android Installation

See https://github.com/ACRA/acra.

Also add the following custom fields in your App class (the one that is extending Application):

Map<ReportField, String> mapping = new HashMap<ReportField, String>();
mapping.put(ReportField.APP_VERSION_CODE, "APP_VERSION_CODE");
mapping.put(ReportField.APP_VERSION_NAME, "APP_VERSION_NAME");
ErrorReporter errorReporter = ACRA.getErrorReporter();
errorReporter.setReportSender(sender);