I followed the instructions on setting up the ACRA to send the emails using-
However can't figured out how to silently send the email to the developer on crash without any email client to choose by the user.
@ReportsCrashes(formKey = "", mailTo = "myemail@xyz.com",
customReportContent = { ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL, ReportField.CUSTOM_DATA,
ReportField.STACK_TRACE, ReportField.LOGCAT },
logcatArguments = { "-t", "200", "-v", "long","test:I" ,"*:D","*:S"},
mode = ReportingInteractionMode.SILENT,
reportType=Type.JSON)
With the above setting, I am still getting the default email client to choose from in order to send the crash report.
How to do it directly ?