在我的Xamarin.Forms应用程序中,我正在检查应用程序启动时是否意外关闭:
if (Crashes.HasCrashedInLastSessionAsync().Result)
{
var report = Crashes.GetLastSessionCrashReportAsync().Result;
HandleException("Crash report", report.Exception);
}
启动应用程序时,发生未处理的异常后, HasCrashedInLastSessionAsync 方法始终返回true。
我现在的问题是:如何手动清除上次会话崩溃报告?