i want to use ACRA to call a certain web service to my server to report a crash in android app , thus my server is not integrated with any thing to ACRA system i just want to call my own web service when crash is happened and get crash data from ACRA and send it with my web service parameters .Is it possible ? thanks
@ReportsCrashes(
formUri = "http://myserver/ErrorLogging/Logger.svc",
reportType = HttpSender.Type.JSON,
httpMethod = HttpSender.Method.POST,
formUriBasicAuthLogin = "serverusername",
formUriBasicAuthPassword = "serverpass",
mode = ReportingInteractionMode.DIALOG,
resToastText = R.string.message
Based on you using svc instead of the official backend, I'm going to take a guess and say you have client side(app) under control and what you need, is something to recieve the crashes. Now, this really depends on your hosting. Full list here
As long as you can run PHP files, you can use PHP hosting files(probably the reason there are so many of them). If you cannot do any of the above, @F43nd1r's answer is the best way to go. Most of the above backends does not need to implement a new sender, as they use the implemented sender.