GoogleService 初始化失败,状态:10,名称为 google_app_id 的字符串资源中缺少 google 应用 ID 值

GoogleService failed to initialize, status: 10, Missing google app id value from from string resources with name google_app_id

我莫名其妙地收到这个错误,它以前工作得很好。这是我拥有的:

在 app.gradle 依赖项中:

implementation "com.google.firebase:firebase-core:16.0.1"
implementation "com.google.firebase:firebase-messaging:17.3.1"

在 app.gradle 文件结尾:

apply plugin: 'com.google.gms.google-services'

在项目 gradle 文件中:

 dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0-alpha10'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'io.fabric.tools:gradle:1.+'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:4.1.0'
    }

google-services.json 位于我项目的几乎每个文件夹中,只是为了查看它是否正常工作。

但仍然出现上述错误。

我遇到了同样的错误,不确定根本原因是什么,但作为变通方法找到了解决方案。

classpath 'com.google.gms:google-services:4.1.0' 降级到 classpath 'com.google.gms:google-services:4.0.0' 应该可以,至少对我有用。

更新到 Android Studio 3.3 后,我开始遇到同样的错误。 com.google.gms:google-services4.1.0 版本在 Android Studio 3.3 中有一个已知问题。

更新到 com.google.gms:google-services:4.2.0 解决了我的问题。