我有一个Android应用程序,我想添加firebase消息传递服务功能,这样我就可以收到从我自己构建的服务器发送到firebase云的通知。
我开始将配置行添加到gradle文件中,但是在添加
之后应用插件:' com.google.gms.google-services'
行,我收到如下错误:
错误:任务':app:processDebugGoogleServices'执行失败。 请通过更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为11.0.2来修复版本冲突。
这是我的模块:app gradle脚本文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "br.com.berait.brecar"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.google.android.gms:play-services-maps:11.0.2'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.android.support:design:25.3.1'
compile 'com.wdullaer:materialdatetimepicker:3.2.2'
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.7'
compile 'com.google.firebase:firebase-messaging:10.2.6'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
如果需要,这是我的项目级gradle脚本文件:
//Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我已经搜索了S.O一段时间了,这种错误的所有答案对我来说都没有用。如您所见,我在文件底部有apply插件行。我认为冲突是由
产生的compile 'com.google.android.gms:play-services-maps:11.0.2'
行,当我向我的应用程序添加谷歌地图API支持时自动添加。
感谢任何帮助,提前谢谢!
答案 0 :(得分:1)
将firebase依赖版本更改为
compile 'com.google.firebase:firebase-messaging:11.0.2'
或将地图依赖关系降低到
compile 'com.google.android.gms:play-services-maps:10.2.6'