我想实现推送通知。我添加到项目级别:
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中,我有2种不同的构建变体,如下所示:
清单:
<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
最后是分级:
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'
以及火力控制台。
我该怎么解决呢?
注意,JSON文件是他们每个项目。
9条答案
按热度按时间u3r8eeie1#
1.只要去谷歌服务. json
1.将package-name更改为您的软件包的名称
1.同步您的项目,它将被解决
5anewei62#
我也遇到了同样的错误。我正在使用多种口味。因此,我把
google-services.json
放在app/src/{flv}
目录中。它对一种口味效果很好,但对其他口味不起作用。问题是,我还将与它在应用程序目录中工作的口味对应的X1 M2 N1 X放置在了应用程序目录中。
只有在app目录中找不到
google-services.json
时,Google才会搜索子目录/ flavor目录。因此,请确保不要将
google-services.json
放在app目录中,以防您为多种口味使用单独的google-services.json
。请参阅this article了解有关Android产品风格的模式详情。
eh57zj3b3#
我遇到了同样的问题,因此使用Android Studio2.3.3时,我使用了菜单工具〉Firebase-在窗口右侧单击通知,然后单击在应用上接收通知,最后单击连接到Firebase,之后您将看到一个对话框,内容为此应用已连接到项目,但只需单击同步,然后firebase会自动同步你所有的应用程序客户端,它会解决这个问题,顺便说一句,我知道这是为时已晚的React,但它可能会帮助别人。
7fyelxc54#
如果您已添加google-service.json文件,请检查build.gradle(:应用程序)软件包名称和google-service.json文件中的软件包名称相同
此外,如果您添加了productFlavors,请确保您已在firebase中添加了用于创建JSON文件的包
u4dcyp6a5#
检查您的Gradle应用级别applicationId,它应该与firebase包名称相同,这样它才能像一个符咒一样工作
umuewwlo6#
同时检查firebase并下载最近的.json文件。
daolsyd07#
使用您的包名称更新应用级别Gradle文件的defaultConfig内的applicationId。
vfh0ocws8#
尝试下载最新的google-services.json文件
fcg9iug39#
虽然有点晚了,但也许它可以帮助像我这样的人解决同样的问题。我在Firebase控制台的项目设置中定义了另一个应用程序,它使用了与我的其他版本相同的不同包名。然后我下载了新的google-services.json文件,并使用it.it对我来说就像一个魅力