背景:

我试图为我的应用程序设置谷歌分析(有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.


当前回答

打开你的谷歌服务。Json文件,并在文件中查找此部分:

"client": [
{
  "client_info": {
    "mobilesdk_app_id": "1:857242555489:android:46d8562d82407b11",
    "android_client_info": {
      "package_name": "com.example.duke_davis.project"
    }
  }

检查该包是否与您的包名相同。我的不一样,所以我改了一下,它起作用了。

其他回答

首先,在Gradle中为应用程序包添加一个后缀:

yourFlavor {
   applicationIdSuffix "yourFlavor"
}

这将使您的包被命名

com.domain.yourapp.yourFlavor

然后转到当前项目下的Firebase,用这个包名添加另一个android应用程序。

然后替换现有的谷歌服务。Json文件,其中包含你生成的新应用程序。

然后,您将得到具有多个“client_info”部分的内容。所以你应该得到这样的结果:

"client_info": {
    "mobilesdk_app_id": "YOUR APP INFO",
    "android_client_info": {
      "package_name": "com.domain.yourapp"
    }
  }

"client_info": {
    "mobilesdk_app_id": "YOUR APP INFO - will be different then other app info",
    "android_client_info": {
      "package_name": "com.domain.yourapp.yourFlavor"
    }
  }

这意味着你的谷歌服务。json文件不属于你的应用程序(你下载了谷歌服务吗?Json的另一个应用程序?)要解决这个问题,请执行以下步骤:

1:Sign in to Firebase and open your project. 2:Click the Settings icon and select Project settings. 3:In the Your apps card, select the package name of the app you need a config file for from the list. 4:Click google-services.json. After the download completes,add the new google-services.json to your project root folder,replacing the existing one..or just delete the old one. Its very normal to download the google-services.json for your first project and then assume or forget that this specific google-services.json is tailored for your current project alone,because not any other because all projects have a unique package name.

我解决了同样的问题 这里有一个简单的解决方法: 当您创建firebase连接时,请遵循以下原则:

在firebase中添加应用程序名称 添加你的应用程序包名(写相同的包名,你在应用程序中使用) 当firebase做谷歌服务。Json文件下载并粘贴到你的应用文件夹 同步你的项目问题解决了:) 谢谢你!

如果有人改变了他们现有的包名,那么有时会出现这样的问题,所以你应该改变本地包名,build。Gradle文件包名称以及你的项目是否有任何google服务。json文件,那么你只需要改变你的json文件包的名称。

旧档案是这样的

"client": [
{
  "client_info": {
    "mobilesdk_app_id": "1:517104510151:android:8b7ed3989db24a6f928ae2",
    "android_client_info": {
      "package_name": "com.techsajib.oldapp"
    }
  },

新建文件是这样的

"client": [
{
  "client_info": {
    "mobilesdk_app_id": "1:517104510151:android:8b7ed3989db24a6f928ae2",
    "android_client_info": {
      "package_name": "com.techsajib.newapp"
    }
  },

注意:有时JSON文件有几个包名,所以要全部更改

去谷歌服务。json文件和在客户端部分检查包名称,并与App包名称进行比较,如果它们是不同的,然后根据您的App包名称更改客户端包名称,它为我工作,祝我好运。

谷歌服务。Json文件-> "package_name": "com.example.application.tracker"

应用程序包名称->包"com.example.application.tracker";