我正在尝试第一次配置 ACRA。我遵循了基本设置指南:
1.将acra jar文件集成到我的应用程序中
2.创建了一个扩展应用程序类的新类,并在其中添加了以下代码:
@ReportsCrashes(formKey = "", // will not be used
mailTo = "mymailId@gmail.com")
public class MyApplication extends Application
{
@Override
public void onCreate()
{
super.onCreate();
ACRA.init(this);
}
}
3.对清单文件进行所有必要的更改
似乎一切都正确完成了,我可以在 logcat 中得到以下内容:
12-21 14:59:10.994: D/ACRA(28728): ACRA is enabled for com.android.demo.notepad1, intializing...
12-21 14:59:11.064: D/ACRA(28728): Using default Mail Report Fields
12-21 14:59:11.064: D/ACRA(28728): Looking for error files in /data/data/com.android.demo.notepad1/files
12-21 14:59:11.074: W/ACRA(28728): **com.android.demo.notepad1 reports will be sent by email (if accepted by user).**
但我无法收到任何邮件:(!