我按照设置acra的说明使用-
Sending Reports By Email
但是,如果没有任何电子邮件客户端供用户选择,则无法确定如何在崩溃时静默地将电子邮件发送给开发人员。

 @ReportsCrashes(formKey = "",  mailTo = "[email protected]",
        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)

使用上面的设置,我仍然可以从默认的电子邮件客户端中进行选择,以便发送崩溃报告。
怎么直接做?

最佳答案

你不能。Android框架不允许。

10-08 10:59