Skip to content

Instantly share code, notes, and snippets.

@yuksbg
Last active August 29, 2015 14:07
Show Gist options
  • Save yuksbg/7fc4fb502c86d7b9a5b7 to your computer and use it in GitHub Desktop.
Save yuksbg/7fc4fb502c86d7b9a5b7 to your computer and use it in GitHub Desktop.
import org.acra.*;
import org.acra.annotation.*;
@ReportsCrashes(
formKey = "test",
disableSSLCertValidation = true,
formUri = "https://bugtower.net/api/send/?api_key=YOUR_API_KEY",
httpMethod = org.acra.sender.HttpSender.Method.POST)
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ACRA.init(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment