2017-07-27 104 views
1

我想解决这个谷歌服务版本错误。我之前一直在使用Google服务版本10.2.4进行Google登录。现在,由于我想将Geofencing API集成到我的应用程序中,按照我研究的内容,它至少需要11.0.0的最低版本。但是,我无法弄清楚究竟是什么问题。请找出错误,我得到谷歌服务版本冲突

Error:Execution failed for task ':app:processDebugGoogleServices'. 
Please fix the version conflict either by updating the version of the 
google-services plugin (information about the latest version is available at 
https://bintray.com/android/android-tools/com.google.gms.google- 
services/) or updating the version of com.google.android.gms to 10.2.4. 

请在下面找到我的应用程序的build.gradle文件

的build.gradle(APP)

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion '25.0.2' 
    defaultConfig { 
     applicationId "com.project.group.projectga" 
     minSdkVersion 21 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
     resValue "string", "google_maps_key", 
       (project.findProperty("GOOGLE_MAPS_API_KEY") ?: "") 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

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' 
    }) 
    compile('com.mikepenz:materialdrawer:[email protected]') { 
     transitive = true 
    } 

    //Added this for Visual Gallery implementation - Start 
    //Added this for Visual Gallery implementation - End 

    compile 'com.android.support:appcompat-v7:25.3.1' 
    compile 'com.google.firebase:firebase-auth:10.2.4' 
    compile 'com.android.support:design:25.3.1' 
    compile 'com.android.support:cardview-v7:25.3.1' 
    compile 'com.satsuware.lib:usefulviews:2.3.6' 
    compile 'com.google.firebase:firebase-database:10.2.4' 
    compile 'com.google.firebase:firebase-storage:10.2.4' 
    compile 'com.google.android.gms:play-services-auth:11.0.0' 
    compile 'com.google.android.gms:play-services-maps:11.0.0' 
    compile 'com.google.android.gms:play-services-location:11.0.0' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.android.support:support-v4:25.3.1' 
    compile 'com.jakewharton:butterknife:8.5.1' 
    compile 'com.mikepenz:google-material-typeface:[email protected]' 
    compile 'com.mikepenz:fontawesome-typeface:[email protected]' 
    compile 'com.github.medyo:fancybuttons:1.6' 
    compile 'com.mikhaellopez:circularimageview:3.0.2' 
    compile 'com.github.yesidlazaro:GmailBackground:1.2.0' 
    compile 'com.android.support:support-annotations:25.3.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
    compile 'com.github.bumptech.glide:glide:3.7.0' 
    testCompile 'junit:junit:4.12' 
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' 
} 

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

,也是我的build.gradle(以下项目)文件。

的build.gradle(项目)

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     jcenter() 
    } 
    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() 
     maven { url "https://jitpack.io" } 
    } 
} 

task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

我跟很多堆栈溢出的答案,他们说在末尾添加谷歌服务的插件。我从一开始就添加了插件,它似乎没有为此工作。我正在尝试将需要Google服务版本的Geofencing API集成到至少11.0.0,但我无法做到这一点。

回答

2

移动你firebasecom.google.android.gms模块相同的版本和至少11.0.0:

compile 'com.google.firebase:firebase-auth:11.0.2' 
compile 'com.google.firebase:firebase-database:11.0.2' 
compile 'com.google.firebase:firebase-storage:11.0.2' 
compile 'com.google.android.gms:play-services-auth:11.0.2' 
compile 'com.google.android.gms:play-services-maps:11.0.2' 
compile 'com.google.android.gms:play-services-location:11.0.2' 
+0

非常感谢!这样可行! –