找不到包含名称“....”的匹配客户端,其中包含不同的buildvariant

时间:2016-11-14 11:19:09

标签: android json firebase

我想实现推送通知。 我添加到项目级别:

dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'com.google.gms:google-services:3.0.0'
}

和应用级别:(位于文件底部)

   ....
   compile 'com.squareup.okhttp3:okhttp:3.3.0'
}
apply plugin: 'com.google.gms.google-services'

然后我将google-services.json文件添加到应用级别的项目中

但是,当我同步gradle时,它会启动错误:

No matching client found for package name "...." 

在gradle中,我有两种不同的构建变体,如下所示:

enter image description here

清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="es.xxx.awsomeapp">

    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:name=".realm.XXXXXX"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher_chv"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity

最后是gradle:

apply plugin: 'com.android.application'
apply plugin: 'realm-android'

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
    maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
    maven { url "https://jitpack.io" }
    maven { url 'http://dl.bintray.com/amulyakhare/maven' }
    mavenCentral()
}
android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"
    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    productFlavors {
        vanilla {
            applicationId "es.xxx.awsomeApp"
            resValue 'string', 'app_name', "Awsome"
        }
        chv {
            applicationId "es.xxx.awsomeApp.chv"
            resValue 'string', 'app_name', "Awsome CHV"
            signingConfig signingConfigs.chv_release
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    testOptions {
        unitTests.returnDefaultValues = true
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    //Auxiliar libraries
    compile 'org.igniterealtime.smack:smack-android-extensions:4.2.0-beta2'
    //Auxiliar libraries
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'org.igniterealtime.smack:smack-android-extensions:4.2.0-beta2'
    compile 'org.igniterealtime.smack:smack-tcp:4.2.0-beta2'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta2'
    compile 'com.android.support:design:24.2.1'
    compile 'com.android.support:recyclerview-v7:24.2.1'
    compile 'com.orhanobut:logger:1.15'
    compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
    compile 'com.github.Slyce-Inc:SlyceMessaging:1.1.2'
    compile 'io.realm:android-adapters:1.4.0'
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.android.support:cardview-v7:24.2.1'
    compile 'com.rengwuxian.materialedittext:library:1.8.3'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.squareup.okhttp3:okhttp:3.3.0'
    compile 'com.google.firebase:firebase-messaging:9.8.0'
    testCompile 'junit:junit:4.12'
    testCompile 'org.robolectric:robolectric:3.0'
    testCompile 'com.android.support:appcompat-v7:24.2.1'
    testCompile 'org.igniterealtime.smack:smack-tcp:4.2.0-beta2'
    testCompile 'com.android.support.constraint:constraint-layout:1.0.0-beta2'
    testCompile 'com.android.support:design:24.2.1'
    testCompile 'com.orhanobut:logger:1.15'
    testCompile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
    testCompile 'com.github.Slyce-Inc:SlyceMessaging:1.1.2'
}
apply plugin: 'com.google.gms.google-services'

和firebase控制台。

enter image description here

我该如何解决?

注意,json文件都是他们的项目之一。

8 个答案:

答案 0 :(得分:17)

我遇到了同样的错误。我正在使用多种口味。因此,我将google-services.json放在app/src/{flv}目录中。

它仅对一种口味有效,但对其他口味无效。问题是我也将google-services.json对应的味道也放置在了应用程序目录中。

只有在应用目录中找不到google-services.json时,Google才会搜索子目录/ flavor目录。

因此,请确保不要将google-services.json放在应用程序目录中,以防您为多种口味使用单独的google-services.json

答案 1 :(得分:11)

  1. 只需转到google-services.json
  2. 将package-name更改为您的包的名称
<table class="first_table">
      <thead>
        <tr>
          <th>უნარები</th>
          <td>Python</td>
          <td>Web Development</td>
          <td>Red Hat/CentOS</td>
          <td>Algorithms & Data Structures</td>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th>შეფასება</th>
          <td>⭐⭐⭐</td>
          <td>⭐,⭐/2</td>
          <td>⭐</td>
          <td>⭐⭐⭐</td>
        </tr>
      </tbody>
    </table>
  1. 同步您的项目,它将解决

答案 2 :(得分:4)

我遇到了同样的问题,所以使用Android Studio 2.3.3 我使用了菜单 工具&GT; Firebase - 在窗口右侧点击通知,然后接收应用上的通知,最后点击连接到Firebase ,在此之后您会看到一个对话框,说明此应用已与项目相关但只需点击同步,然后firebase将自动同步您的所有应用客户端,它将会解决这个问题,顺便说一下,我知道回复已经太晚了,但这可能对某人有帮助。

答案 3 :(得分:4)

如果您已添加 google-service.json 文件 检查bulid.gradle(:app) package_name 和google-service.json文件中的 package_name 是否相同
另外,如果您已添加 productFlavors ,请确保已在Firebase中添加了该软件包以用于创建JSON文件

答案 4 :(得分:2)

*转到build.gradle并使用与AndroidManifest.xml相同的名称更改软件包名称,然后再次同步* [1] [在此图中,AndroidManifest中的包名称与build.gradle相同] [1]:https://i.stack.imgur.com/T4cqz.png [下图显示了build.gradle中与AndroidManifest相同的包名称] [2]:https://i.stack.imgur.com/ModHS.png [build.gradle中的软件包名称] [2]

还要检查firebase并下载最新的.json文件。

答案 5 :(得分:0)

检查您的Gradle应用程序级别applicationId,该名称应与Firebase软件包名称相同,然后像超级按钮一样工作

答案 6 :(得分:0)

在应用程序级别gradle文件的defaultConfig中更新您的applicationId。输入您的包裹名称。

答案 7 :(得分:0)

尝试下载最新的 google-services.json 文件