找不到任何与 com.google.android.gms:play-services-base:\[15.0.1,16.0.0) 匹配的版本

新手上路,请多包涵

我正在为我的 android 应用程序使用 firebase,但当我尝试运行该应用程序时突然出现错误。星期六它工作得很好。我不知道这个错误是如何发生的以及如何解决这个问题。请帮我。

我的 build.gradle 中的依赖项

dependencies {
    compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
        transitive = true;
    }
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:cardview-v7:23.4.0'
    compile 'com.facebook.android:facebook-android-sdk:4.1.0'
    compile 'com.google.code.gson:gson:2.8.4'
    compile 'com.android.support:multidex:1.0.3'
    compile 'com.microsoft.azure:azure-mobile-android:3.1.0'
    compile 'com.mixpanel.android:mixpanel-android:4.8.0'
    compile 'com.firebase:firebase-client-android:2.4.0'

    compile 'com.google.firebase:firebase-core:16.0.0'
    compile 'com.google.firebase:firebase-auth:16.0.1'
    compile 'com.android.support:support-v4:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.j256.ormlite:ormlite-android:4.48'
    compile 'com.j256.ormlite:ormlite-core:4.48'
    compile 'com.android.support:recyclerview-v7:23.4.0'
    compile 'com.github.tibolte:elasticdownload:1.0.+'
    compile 'me.dm7.barcodescanner:zxing:1.8.4'
    compile 'com.google.android.gms:play-services-vision:15.0.2'
    compile 'com.android.support.constraint:constraint-layout:1.1.1'
    compile 'com.github.amlcurran.showcaseview:library:5.4.3'
    compile 'com.wang.avi:library:2.1.3'
    testCompile 'junit:junit:4.12'
    androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.6.0'
    androidTestCompile 'com.android.support.test:rules:1.0.2'
}
apply plugin: 'com.google.gms.google-services'

在我的项目级别 build.gradle 中:

 dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'com.google.gms:google-services:4.0.0'
    }

我得到的错误:

找不到任何与 com.google.android.gms:play-services-base:[15.0.1,16.0.0) 匹配的版本。

原文由 Riddhi 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.4k
2 个回答

确保您在项目级 build.gradle 中有 google() 存储库在任何其他之前:

 allprojects {
    repositories {
        google()
        mavenLocal()
        jcenter()
    }
}

原文由 mpontus 发布,翻译遵循 CC BY-SA 4.0 许可协议

转到android目录中的build.gradle,插入

maven { url 'https://maven.google.com' }

在所有项目的存储库的顶部位置相同:

 allprojects {
repositories {
    maven { url 'https://maven.google.com' } //<<--Insert this above google()
    google()

原文由 Iman Radmanesh EPRE.ir 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题