I am using ACRA for Android and I want to send crash reports to my own server. I set everything up and everything works fine. However, I would like to make a URL to send reports to custom. But I do not know how to do this.
Here is the code I use to set the URL
@ReportsCrashes(formKey = "",
formUri = "http://yourserver.com/yourscript",
formUriBasicAuthLogin = "yourlogin",
formUriBasicAuthPassword = "y0uRpa$$w0rd",
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash_toast_text)
public class MyApplication extends Application {
...
Basically, I cannot configure formUrifrom the application. Is it possible?
source
share