解析失败:\`com.google.android.gms:play-services-appindexing:10.0.0\`

新手上路,请多包涵

设置 compile 'com.google.android.gms:play-services-appindexing:10.0.0' 时出现以下错误:

 Error:(82, 13) Failed to resolve: com.google.android.gms:play-services-appindexing:10.0.0

在设置 compile 'com.google.android.gms:play-services-appindexing:9.8.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.0.0.

如果有人能告诉我这有什么问题,我将不胜感激,因为休息播放服务版本 10.0.0 工作正常。

我的 build.gradle 文件

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.22.0'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
    signingConfigs {

    }
    compileSdkVersion 25
    buildToolsVersion '25.0.0'

    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 41
        versionName "2.2.0"
        multiDexEnabled true
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.config
        }
        debug {
            signingConfig signingConfigs.config
        }
    }
    lintOptions {
        checkReleaseBuilds false
    }
}

configurations {
    compile.exclude group: 'stax'
    compile.exclude group: 'xpp3'
}

repositories {
    maven {
        url "http://dl.bintray.com/microsoftazuremobile/SDK"
    }
    maven { url 'https://maven.fabric.io/public' }
}

dependencies {
    //Microsoft azure
    compile 'com.microsoft.azure:azure-notifications-handler:1.0.1@aar'
    compile files('libs/notification-hubs-0.4.jar')

    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:25.0.1'
    compile 'com.android.support:support-v4:25.0.1'
    compile 'com.android.support:recyclerview-v7:25.0.1'
    compile 'com.android.support:cardview-v7:25.0.1'
    compile 'com.android.support:design:25.0.1'
    compile 'com.android.support:palette-v7:25.0.1'

    compile 'com.google.android.gms:play-services-auth:10.0.0'
    compile 'com.google.android.gms:play-services-maps:10.0.0'
    compile 'com.google.android.gms:play-services-analytics:10.0.0'
    compile 'com.google.android.gms:play-services-gcm:10.0.0'
    compile 'com.google.android.gms:play-services-appindexing:10.0.0'
    compile 'com.google.android.gms:play-services-base:10.0.0'

    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.android.support:multidex:1.0.1'

    //Facebook SDK
    compile 'com.facebook.android:facebook-android-sdk:4.17.0'

}

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

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

阅读 742
2 个回答

现在 Google Play 服务版本 10.0.1 已经发布,所以替换这个 compile 'com.google.android.gms:play-services-appindexing:10.0.0'

通过 compile 'com.google.firebase:firebase-appindexing:10.0.1'

原文由 Krishna Meena 发布,翻译遵循 CC BY-SA 3.0 许可协议

您正在寻找的 appindexing 库现在位于新的 gradle 目标下。

你想添加 compile 'com.google.firebase:firebase-appindexing:10.0.0' 到你的应用程序的 build.gradle 文件:)

您可以在 此处查看最新的库。

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

推荐问题