为什么我没有收到任何有关Firebase崩溃的报告?

时间:2019-10-13 10:55:39

标签: android firebase crashlytics

我正在尝试为我的应用添加Firebase支持,添加所有依赖项后,我仍然无法收到任何报告。我也重新安装了我的应用程序,但并没有帮助我。问题出在哪里?我还将添加有关我的问题的其他一些重要信息,但请告诉我要解决此问题需要添加的内容。

更新

我的gradle文件,项目一:

temporaryList

应用级别:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        maven {
            url 'https://maven.fabric.io/public'
        }
    }


    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50"
        classpath 'com.google.gms:google-services:4.3.2'
        classpath 'io.fabric.tools:gradle:1.31.1'  // Crashlytics plugin
    }
}



allprojects {
    repositories {
        google()
        jcenter()
        maven {
            google()
            url 'https://jitpack.io'
        }

        maven { url 'https://maven.google.com' }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

因此,在将所有重要范围添加到我的代码中之后,我重新安装了我的应用程序。这意味着我首先将其从设备中删除,然后再次安装。也许是因为我在模拟器上重新安装了此应用程序?现在我有这张照片:

enter image description here

我无法完成数字3的勾选步骤。也许有人知道我在哪里弄错了?

1 个答案:

答案 0 :(得分:1)

也许此信息会对我以外的其他人有所帮助))我已经通过在AndroidManifest的application范围内添加一些行来解决此问题:

 <meta-data
            android:name="firebase_crashlytics_collection_enabled"
            android:value="true" />

这也将在您的项目中启用crashlytics而不创建崩溃。祝你好运:D