我想将我的应用的CrashReport
发送给多个收件人,这可能没有添加ErrorReporter
,只是在@ReportCrashes
?
如果没有,那么可能的解决方案是什么?
代码:
import org.acra.ACRA;
import org.acra.ReportingInteractionMode;
import org.acra.annotation.ReportsCrashes;
@ReportsCrashes(
mailTo = "******@gmail.com",
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash_toast_text
)
提前致谢。 :)
答案 0 :(得分:1)
您必须实现自己的发件人,如下所示:
csrutil enable
答案 1 :(得分:1)
您的问题的措辞表明您希望向多个电子邮件收件人发送邮件。如果是这种情况,那么只需逗号将它们分隔在mailTo
属性中。那就是:
@ReportsCrashes(
mailTo = "******@gmail.com, someOne@another.address",
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash_toast_text
)
您不需要为该用例配置另一个ReportSender
。