Firebase集成android的问题

时间:2019-11-10 10:46:05

标签: android firebase

我在Android应用程序上进行Firebase集成时遇到问题。我已经完成了官方教程中描述的所有操作。我在 project build.gradle

中添加了此代码
buildscript {
    ext.kotlin_version = '1.3.41'
    repositories {
        google()
       ...
    }
    dependencies {
       ...
        classpath 'com.google.firebase:firebase-plugins:1.2.0'
        classpath 'com.google.gms:google-services:4.3.2'
    }
}

allprojects {
    repositories {
        google()
...

我也将此附加到 app build.gradle

的底部
apply plugin: 'com.google.gms.google-services'

当然我没有忘记将 google-service.json 添加到应用程序目录中

但是我在这里停留在“使用Google服务进行应用程序连接验证”中 Application connection verification with google service

与Firebase的连接未建立。我不明白我做错了什么。请帮帮我。
1)应用程序可以访问互联网。 (已经可以使用了)
2)整合后我已经打开了应用程序
3)我试图重新安装应用程序 enter image description here

1 个答案:

答案 0 :(得分:0)

最后我发现了我的错误。这是非常愚蠢的-以前有人在另一个目录中的项目中留下了另一个google-service.json **文件。我没看见过它。

也许有人会发现我如何确定此错误很有用

如果不确定google-service.json是否已正确解析,则应查看 app> build> generate> res> google-services> [buildType]> values> values.xml 。是的,那么此文件将包含与google-service.json文件中相同的数据。
enter image description here