Skip to content

Very simple app to receive error reports from android apps posted via https://github.com/ACRA/acra.

Notifications You must be signed in to change notification settings

avarteqgmbh/johnny_crash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);