3

尝试使用 Firebase 崩溃报告时,我的 logcat 中出现以下错误:

FirebaseCrash: Failed to initialize crash reporting

FirebaseCrash: com.google.firebase.crash.internal.zzg$zza: com.google.android.gms.internal.zzsb$zza: No acceptable module found. Local version is 0 and remote version is 0.

我在模块应用程序项目中添加了以下内容并构建 gradle:

   classpath 'com.google.gms:google-services:3.0.0'
   compile 'com.google.firebase:firebase-core:9.4.0'
   compile 'com.google.firebase:firebase-ads:9.4.0'
   compile 'com.google.firebase:firebase-crash:9.4.0`

   apply plugin: 'com.google.gms.google-services'

并添加google-services.json到应用程序文件夹中。

我让 Firebase Analytics 在 24 小时后开始工作,第一次更新的时间限制。为了获得我添加的第一个错误MainCctivity

FirebaseCrash.report(new Exception("My first Android non-fatal error"));

我在模拟器中使用的 Google Play 服务是 9.4.52(238-127739847) 版本(Nexus Api 23,Android 版本 6.0)。错误仍然显示在 logcat 中,我怎样才能让崩溃报告工作?

4

1 回答 1

0

这里的底线是 Firebase 崩溃报告仅适用于具有 Google Play 服务的设备,并且其版本需要匹配或超过 Firebase 客户端库版本。

如果您在模拟器中运行,则需要使用安装了 Play 服务的图像。

于 2016-12-31T21:57:13.350 回答