Back to project page DroidAlone.
The source code is released under:
Apache License
If you think the Android project DroidAlone listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fede; //from ww w .java 2s. co m import android.app.Application; import org.acra.ACRA; import org.acra.annotation.ReportsCrashes; /** * Created with IntelliJ IDEA. * User: fedepaol * Date: 11/25/12 * Time: 3:03 PM */ @ReportsCrashes(formKey = "dFp4ZFhCaFRMS01pUkhEQ2pFajdMSWc6MQ") public class DroidAloneApplication extends Application { @Override public void onCreate() { // The following line triggers the initialization of ACRA ACRA.init(this); super.onCreate(); } }