Back to project page Sketcher.
The source code is released under:
Apache License
If you think the Android project Sketcher 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 org.sketcher; //from ww w .j ava 2s .c o m import org.acra.ACRA; import org.acra.ReportField; import org.acra.annotation.ReportsCrashes; import android.app.Application; @ReportsCrashes(formKey = "dGFoVFJVVl9NQ0lNaFhKRW5sNmp6RHc6MQ", customReportContent = { ReportField.APP_VERSION_CODE, ReportField.APP_VERSION_NAME, ReportField.PACKAGE_NAME, ReportField.PHONE_MODEL, ReportField.STACK_TRACE }) public class SketcherApplication extends Application { @Override public void onCreate() { ACRA.init(this); super.onCreate(); } }