Back to project page android-sms-gateway.
The source code is released under:
Apache License
If you think the Android project android-sms-gateway 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.anjlab.android.smsgateway.gcm; //from www . j ava2 s . c om import android.app.Application; import org.acra.ACRA; import org.acra.annotation.*; @ReportsCrashes(formUri = "http://www.bugsense.com/api/acra?api_key=f502e669", formKey="") public class GatewayApplication extends Application { @Override public void onCreate() { ACRA.init(this); super.onCreate(); } }