解决方法
ACRA库将满足您的要求.您只需要设置电子邮件.教程和设置定义为
here.
在lib中使用.jar下载库
您只需要定义Application类并在应用程序类之上编写以下代码并覆盖onCreate()方法,就像这样
@ReportsCrashes(formKey = "",// will not be used mailTo = "reports@yourdomain.com",mode = ReportingInteractionMode.TOAST,resToastText = R.string.crash_toast_text) public class MyApplication extends Application { @Override public void onCreate() { ACRA.init(this); super.onCreate(); } }
而已.电子邮件操作将打开,其正文包含崩溃报告.