- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试将我的项目与 Gradle 文件同步时出现错误
这里是错误
Error:Execution failed for task ':app:processDebugGoogleServices'. No matching client found for package name 'com.xx.xxx.xxxx'
这是我的 Gradle 文件内容:
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
android {
compileSdkVersion 26
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.xx.xxx.xxxx"
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
useLibrary 'org.apache.http.legacy'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:support-v4:26.1.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-messaging:11.0.4'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.jakewharton:butterknife:7.0.1'
provided 'org.projectlombok:lombok:1.12.6'
compile 'org.parceler:parceler-api:1.0.4'
apt 'org.parceler:parceler:1.0.4'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'io.reactivex:rxandroid:1.1.0'
compile 'io.reactivex:rxjava:1.1.0'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.google.maps:google-maps-services:0.2.5'
compile 'org.slf4j:slf4j-nop:1.7.25'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.cocosw:bottomsheet:1.+@aar'
}
apply plugin: 'com.google.gms.google-services'
而且我已经检查了我的 google-service 文件包名称和应用程序 ID,它们都是相同的,但是当我尝试构建该应用程序时,出现了上述错误。我的 google-services 文件包含多个项目,包括这个项目。
请帮我修复它。
最佳答案
只需转到 Firebase 控制台并创建新项目并使用所需的 com.xx.xxx.xxxx
包名称添加新应用并获取 google-services.json
针对该包名称创建文件并将该文件添加到您的应用程序模块并重建,或者如果您不想添加该 .json
文件,则只需删除 apply plugin: 'com.google.gms .google-services'
来自您的 gradle 文件并再次构建您的项目。
关于android - 错误 : Execution failed for task ':app:processDebugGoogleServices' . > 找不到包名称 'com.xx.xxx.xxxx' 的匹配客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50698529/
我收到这个错误,我不记得是怎么回事,但我猜是在我对以下版本进行了一系列更新之后: Android Studio 1.5 beta Build tools 23.0.2 Support librarie
What went wrong? org.gradle.api.internal.tasks.DefaultTaskContainer$DuplicateTaskException: Cannot a
我想测试一下firebase FCM插件,但是貌似错误很多,在解决了其中的许多问题之后,这就是我尝试做:ionic cordova build android,我有这个错误: 我的安卓build.gr
我的 build.gradle(app) 为: apply plugin: 'com.android.application' android { compileSdkVersion 27 defau
我无法在 android studio 中运行我的 flutter 应用程序。我正在使用 firebase 登录和注册用户。因此,相应地,我添加了 google-services.json 文件。 需
我正在尝试使用以下 build.gradle 文件构建一个应用程序,但总是有一个错误无法创建文件夹。我检查了很多答案,但没有人帮助我。 * What went wrong: Execution fai
我正在使用 android studio 构建原生 android 应用程序。到目前为止,我已经使用 firebase 和 map 页面来获取内容,但我不断收到错误消息。我看到了与我类似的帖子,但那些
我在 Android Studio 中有一个错误。新建activity空白应用,我添加“build.gradle(project)” dependencies { classpath 'c
我正在尝试在我的 Phonegap Cordova 应用程序上添加 Google Firebase 通知,该应用程序是使用 Ionic 构建的。我已经成功安装了用于登录的 Google Plus 插件
我要问的问题已经有人问了here , here和 here .不幸的是,没有人为我工作。 我目前正在开发 ionic4 应用程序并尝试在 Android 上运行该应用程序。我需要使用来自 fireba
我已将 cordova-android 版本从 9.0 升级到 10.0.1,并在使用 - ionic cordova build android 构建 Cordova 应用程序时面临以下问题 错误:
我想将 Firebase 数据库添加到我的 Android 应用程序中,但出现错误。 失败:构建因异常而失败。 出了什么问题:任务“:app:processDebugGoogleServices”执行
我知道已经有很多类似的问题,但他们所有的解决方案都提到添加 apply plugin: 'com.google.gms.google-services' 在我拥有的 gradle 文件的底部。或者将
自从我安装了这个 Native FCM Plugin在 Ionic Project 中,我在执行 ionic cordova android build 时总是遇到以下错误: Run with --s
错误:任务“:app:processDebugGoogleServices”执行失败。请通过更新 google-services 插件的版本(有关最新版本的信息可在 https://bintray.c
我正在尝试将推送通知与 Firebase 云消息传递和 Cordova FCM 结合使用。我的 google-services.json 与 config.xml 位于根文件夹中,同一文件位于 pla
将我的 google play 服务更新到 rev 28 后,我收到了这个错误。我不确定为什么会发生这种情况,因为它之前工作正常。 这是我的 build.gradle 文件 apply plugin:
我正在点击此链接将 Google 登录功能集成到我的 Android 应用程序中。 https://developers.google.com/identity/sign-in/android/sta
我刚刚将代码添加到我的 Android Studio 项目以使用 Firebase 存储并收到此错误: Execution failed for task ':app:processDebugGoog
当我添加以下行时:在文件 build.gradle 中编译 'com.google.firebase:firebase-messaging:10.0.1' 并立即在 AndroidStudio 中单击
我是一名优秀的程序员,十分优秀!