尝试使用 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 中,我怎样才能让崩溃报告工作?