当前位置: 首页 > 知识库问答 >
问题:

使用Firebase云服务时出错:AppProcessDebugGoogle服务-找不到与包名称匹配的客户端

益麻雀
2023-03-14

我正在使用 Firebase 云消息传递推送通知。

我遵循了官方网站的所有说明,并成功添加了所有要求。但是我收到错误,无法找到任何解决方案。

我的错误是:

  Error:Execution failed for task ':app:processInmemoryDebugGoogleServices'.
  > No matching client found for package name 'in.voiceme.app.voiceme.inmemory' 

我添加的地方google-service.json看看。

我的项目结构看起来像

我已经在依赖项中添加了:

   compile 'com.google.firebase:firebase-messaging:9.4.0'
   apply plugin: 'com.google.gms.google-services'

添加的类路径:

   buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        *classpath 'com.android.tools.build:gradle:2.1.3'*

        *classpath 'com.google.gms:google-services:3.0.0'*

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
 }

我的基于应用程序的构建。格拉德勒

      apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "in.voiceme.app.voiceme"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    productFlavors {
        inmemory {
            applicationId "in.voiceme.app.voiceme.inmemory"
        }

        live {
            applicationId "in.voiceme.app.voiceme"
        }
     }
   }

    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:24.2.0'
        compile 'com.android.support:design:24.2.0'
        compile 'com.google.firebase:firebase-messaging:9.0.0'
    }
apply plugin: 'com.google.gms.google-services'

任何人都可以给我关于这个错误的解决方案?

共有2个答案

向弘懿
2023-03-14

由于@qbix,我解决了这个问题

 for productFlavors 

    inmemory {
        applicationId "in.voiceme.app.voiceme.inmemory"
    }

 Need to create different `google-service.json` using firebase console 
 and copy this json file into `inmemory` package.

我发现问题是不同的帕卡奇名称没有找到谷歌服务.json,json文件存储帕卡奇名称,当我们从火基地控制台创建这个。

provide new `google-service.json` to inmemory package is solution for that issue. thanks again @qbix  
闾丘书
2023-03-14

因为内存构建风格使用不同的包名(appationId),你需要修改你的google-services.json文件,或者提供它的多个副本。Google Services Gradle插件的留档描述了不同构建类型和风格的文件夹结构。

如果您的应用程序构建类型和风格不需要不同的项目设置,可以使用单个文件并在文件中的客户端数组中添加一个条目。添加的条目将指定包名称in.voiceme.app.voiceme.inmemory。有关更多详细信息,请参阅链接文档,特别是关于处理JSON文件的部分。

这个相关问题的答案也会有所帮助。

 类似资料:
  • 每当我尝试构建我的项目时,我总是收到这个错误: 我已经制作并重新制作了,并使用了该应用程序和包。 这是我的项目构建: 以下是我的应用程序build.gradle: 我已经按照这里的说明做了几次。我还使用了我的发行版配置,因此没有任何理由认为applicationIdSuffix应该是一个问题。还有,com.my。pacakage只是我的pacakge名字的替身。我可以做些什么来解决这个问题?

  • 上下文: 我正在尝试为我的应用程序设置Google Analytics。(具有4个自定义和多个) 当我选择时,它可以正常工作,因为它将设置为(生成时使用的包名)。但是,我的其他口味有不同的用途。 我跟着警察的向导去布置。 在中选择任何另一个生成变体(具有不同的(包名))时,我得到的错误如下: 错误:任务“:app:ProcessAllCategoriesDebugFreeGoogleService

  • 这导致我的gradle构建失败,出现“没有为包名'com.acme.foo'找到匹配的客户端”错误。 我看了这两个:没有找到匹配的客户机包名称(Google Analytics)-多个productFlavors&buildTypes和google-services.json用于不同的productFlavors 不幸的是,这两个问题都没有涉及到为特定产品风味使用不同的应用程序id的问题。我确实试

  • 我的就像bellow: 但让我大喊错误:

  • 再次执行项目D:\Profile\中的任务:[clean,:App:AssembleDebug] 任务:清除最新任务:App:清除任务:App:预生成最新任务:App:预调试生成最新任务:App:预调试生成最新任务:App:GenerateDebugBuildConfig任务:App:CompileDebugAIDL无源任务:App:CompileDebugrenderScript无源任务:App

  • 我有一个短期任务,客户端到spring云配置。(依赖于spring cloud starter配置或spring cloud配置客户端)。 正如我提到的,这是一个短暂的任务,它启动、从服务器加载配置、进行一些处理并关闭。 问题是spring-cloud d-config-Client启动Web服务器(tomcat),这是冗余的-我不想在我的客户端应用程序/任务上启动Web服务器。 我知道这个Web