Crashes in Google Play Developer console vs Crashlytics Console

后端 未结 2 1268
情歌与酒
情歌与酒 2021-01-05 09:54

We have an Android App on Google play store . The Crashes & ANR section of the app lists only a handful of top crashes where as our Crashlytics console lists a total dif

相关标签:
2条回答
  • 2021-01-05 10:24

    I have used Google Play, Crittercism, Crashlytics and HockeyApp to track crashes in Android SDK and NDK derived applications.

    My answers to your questions...

    1) You will never be able to get all of the crashes in Google Play Dev Console. Google Play simply does not do a good job tracking crashes. In many versions, it requests that the user 'Send Report' and many people just click cancel. Google Play also only collects crashes from certain recognized devices and regions.

    2) The weaknesses of Google Play's crash reporting system will push you to use a third-party crash reporter. At this point I would never release an application that depended strictly on Google Play for crash reporting -- you will simply miss the vast majority of user issues if you do this.

    Our process is to ignore Google Play Dev Console's crash reports, but use their ANR reports (which are harder to get in other crash reporters.)

    0 讨论(0)
  • 2021-01-05 10:49

    As said, it depends on the users decision to 'Send Report' or not. You can move to a third-party crash reporter or try tasting Firebase Crash Reporting (https://firebase.google.com/docs/crash).

    0 讨论(0)
提交回复
热议问题