背景:

我试图为我的应用程序设置谷歌分析(有4个自定义buildTypes和多个productFlavors)

当我选择有applicationId设置为com.my.app.package.name(生成google-services.json时使用的包名)的Build Variant时,它工作得很好。但是,我的其他口味有不同的应用id。

我按照官方的开发指南来设置它。

当在build variables选项卡中选择任何其他构建变量时(具有不同的applicationId(包名)),我得到的错误如下:

错误:任务执行失败 “应用程序:processAllcategoriesDebugfreeGoogleServices”。 没有为包名'com.my.app.package.name.debug'找到匹配的客户端

错误信息解释:

在上面错误消息中的任务名称中,Debugfree是我的自定义buildType, Allcategories是我的productFlavors之一。

我理解这个错误,知道包的名称与我在生成json时使用的不同,但这就是我试图解决的问题。

问题:

现在,谷歌的服务。json驻留在app文件夹中,因此我无法通过将它们放入特定于风味的源集文件夹中将它们分离出来。

问题:

My custom byildType for debugging suffixes .debug to the applicationId (package name). Is there a way I can make it work with the google-services.json which has my release applicationId (i.e. without the suffix .debug) Is there a way to have multiple product flavors configured in the same google-services.json file without using separate files and tasks to copy the required file to app folder. I know it can be done using task as mentioned in this post. Is there a simpler way to just have one file or pick right file based on gradle configuration? I see the package_name field in google-services.json has the package name com.my.app.package.name. Can I add multiple package names manually to work for all build variants? If yes, how to do that? Could not find any instructions in documentations.


当前回答

没有为包名称“com.tf”找到匹配的客户端 我很确定google-services中的“package_name”。json与你的“applicationId”在app gradle中不匹配。

应用gradle:

defaultConfig {
        applicationId "com.tf" //replace with the package_name in google-services.json =
        minSdkVersion 23
        targetSdkVersion 26
        versionCode 7
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

google-services.json

"client_info": {
        "mobilesdk_app_id": "1:23978655351:android:2b2fece6b961cc70",
        "android_client_info": {
          "package_name": "in.ac.geu.debug"
        }
      },

解决方案:确保package_name和applicationId必须相同。

其他回答

在你的谷歌服务上检查你的包名。Json,它应该与你的应用程序的本地包名相同

例子

"client_info": {
    "mobilesdk_app_id": "1:6596814400689:android:65d6f25f5006145",
    "android_client_info": {
      "package_name": "com.my.app.package.name"
    }

在这种情况下,我的本地包名称是com.my.app.package.name,所以我也在google-services中更改了我的包名称。Json和我的本地包名

就我而言,我忘记了谷歌服务。Json在应用程序根目录,这是不同的口味。它在默认情况下使用,而不是使用存储在flavor文件夹中的json。这个混乱的插件,因为包名不匹配,它失败了。

我教的智慧是,检查所有的谷歌服务。Json在你的项目结构中,当这个问题发生时。

如果你的包名在Google-services上。Json文件, 去gradle。属性文件。然后更改您的APPLICATION_ID="com.yourpackage.name"

我也得到这个问题时,我改变包的名称我的应用程序。

在你的android studio项目中找到“google-services”。json文件。 打开它。 并检查应用程序的包名是否与此文件中所写的相同。

应用程序的包名和写在“google-services”中的包名。Json”文件必须相同。

我忘记在Firebase中添加SHA证书指纹。我只是重新导入了谷歌的服务。Json,它工作了