使用ANR Watch Dog时,Crashlytics无法正常工作

时间:2017-03-01 11:55:51

标签: android

在我目前的项目中,我使用line来初始化崩溃: -

Fabric.with(this, new Crashlytics());

在我了解了anrWatchDog后,我阅读了文章https://github.com/SalomonBrys/ANR-WatchDog#can-it-work-with-crash-reporters并试图整合和

使用过代码:=

new ANRWatchDog().start();

Fabric.with(this, new Crashlytics());

但在添加代码后,我的crashlytics停止发送任何fatal/non-fatal个问题。

请帮助我,我错过了什么?

1 个答案:

答案 0 :(得分:2)

我有解决方案。我需要使用下面的代码来启动Anr看门狗。

new ANRWatchDog().setReportMainThreadOnly().start();