com.google.android.gms版本不匹配

时间:2018-09-27 03:58:38

标签: android android-studio

开始构建 错误:失败:构建失败并出现异常。

  • 出了什么问题: 任务':app:processDebugGoogleServices'的执行失败。

      

    请通过更新google-services插件的版本(有关最新版本的信息可在https://bintray.com/android/android-tools/com.google.gms.google-services/中)或将com.google.android.gms的版本更新为16.0.3来解决版本冲突。

  • 尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。使用--scan运行以获取完整的见解。

  • https://help.gradle.org

  • 获得更多帮助

在2秒钟内失败

我的build.gradle在下面

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.google.firebase:firebase-core:16.0.3'
compile 'com.android.support:appcompat-v7:26.1.0'
compile "com.google.firebase:firebase-auth:16.0.3"
compile 'com.google.firebase:firebase-database:16.0.1'
compile 'com.google.android.gms:play-services-auth:16.0.0'
compile "com.google.firebase:firebase-storage:16.0.1"
compile 'com.google.firebase:firebase-core:16.0.3'
compile 'com.google.firebase:firebase-messaging:17.3.0'


compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'jp.wasabeef:recyclerview-animators:2.2.5'
testCompile 'junit:junit:4.12'
compile 'io.realm:realm-android:0.82.1'
compile('com.facebook.android:facebook-android-sdk:+') {
    exclude group: 'com.android.support', module: 'multidex'
}


compile 'com.google.code.gson:gson:2.2.+'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.miguelcatalan:materialsearchview:1.4.0'
compile 'com.google.firebase:firebase-ads:15.0.1'
compile 'com.github.silvestrpredko:dot-progress-bar:1.1'
compile 'com.wang.avi:library:2.1.3'

2 个答案:

答案 0 :(得分:1)

应用此插件

apply plugin: 'com.google.gms.google-services'

答案 1 :(得分:1)

您的build.gradle中没有来自Google服务的申请,因此请添加:

Apply plugin: 'com.google.gms.google-services'

还有:

classpath 'com.google.gms:google-services:4.1.0'

在另一个Build.gradle中,它应该可以工作。