结构:无法从https://settings.crashlytics.com检索设置

时间:2018-06-03 16:34:54

标签: android firebase crashlytics

我试图使用Firebase Crashlytics并且看起来像是不可能的。 firebase设置已完成,但现在我想使用Crashlytics并且无法获取报告。

这是我的设置:(https://firebase.google.com/docs/crashlytics/get-startedenter image description here enter image description here enter image description here

我错过了什么?

2 个答案:

答案 0 :(得分:1)

最后,我必须首先注册Fabric。然后我就可以将我的结构帐户链接到我的Firebase帐户。

答案 1 :(得分:0)

在应用程序级别gradle中检查以下必要的内容,

buildscript {
repositories {
    maven { url 'https://maven.fabric.io/public' }
}

dependencies {
    classpath 'io.fabric.tools:gradle:1.+' -Replace with your required version
}

}

repositories {
maven { url 'https://maven.fabric.io/public'}

}