这是我的build.gradle代码 错误:任务':app:processDebugGoogleServices'执行失败。
请通过更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为9.0.0来修复版本冲突
我的build.gradle代码是
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.example.pandey.nidhiiot"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
我的依赖是 编译com.google.android.gms:play-services:10.0.1'
答案 0 :(得分:0)
尝试将apply plugin: 'com.google.gms.google-services'
放在app.gradle文件的末尾而不是开头