4
我遵循https://firebase.google.com/docs/crash/android的所有步驟來實施Firebase崩潰報告。但是我無法在Firebase控制檯上看到我的崩潰報告。在Android中啓用Firebase崩潰報告
在Android Studio中的logcat的公司給我看:
V/FirebaseCrash:火力地堡崩潰報告被禁用。
我不明白如何啓用崩潰報告。我也提到How to enable Firebase Crash Reporting - Android 但沒有什麼幫助我。
我用自己的代碼拋出一個異常,看看它的工作原理:
try {
throw new NullPointerException();
} catch (NullPointerException ex) {
FirebaseCrash.logcat(Log.ERROR, TAG, "NPE caught");
FirebaseCrash.report(ex);
}
項目搖籃:
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.3' classpath 'com.google.gms:google-services:3.0.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } }
應用搖籃:
apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion '21.1.2' defaultConfig { applicationId "medimanage.corporate.mobile" minSdkVersion 19 targetSdkVersion 22 versionCode 3 versionName "2.2" } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:22.2.1' compile 'com.android.support:design:22.2.1' compile 'com.android.support:support-v4:+' compile 'com.daimajia.slider:library:[email protected]' compile 'uk.co.chrisjenx:calligraphy:2.1.0' compile 'com.google.code.gson:gson:2.4' compile 'de.keyboardsurfer.android.widget:crouton:[email protected]' compile 'com.astuetz:pagerslidingtabstrip:1.0.1' compile 'com.github.clans:fab:1.4.0' compile 'com.android.support:cardview-v7:22.2.1' compile files('libs/android-error-reporter.jar') compile 'com.google.firebase:firebase-core:9.6.0' compile 'com.google.firebase:firebase-crash:9.6.0' } apply plugin: 'com.google.gms.google-services'
請幫我解決這個問題。
您是否添加了google-services.json?您是否可以檢查日誌中的其他FirebaseCrash消息(例如,「應用程序環境丟失,禁用API」或「無法初始化崩潰報告」) –
還要確保您的設備已安裝Play服務。這意味着只有具有「Google API」的模擬器圖像才能工作。 –
我有同樣的錯誤,我解決了這裏[一個鏈接](http://stackoverflow.com/questions/40354611/error27-13-failed-to-resolve-com-google-firebasefirebase-core9-8- 0) – SaTech