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

Failed to resolve: `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.

如果有人能告诉我这有什么问题,我将不胜感激,因为 rest play 服务版本 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'

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

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

您可以看到最新的libraries here.

您好,每当您遇到此类错误时,首先要做的通常是检查您的 Android Studio 中是否安装了最新版本的 google 存储库。我遇到了同样的问题,更新后一切正常。希望对你有帮助。

我必须做两件事。 添加:

compile 'com.google.firebase:firebase-appindexing:10.0.0'

这显然是新的。此 API 现在被列为所有 Google Play 服务设置中唯一的 firebase API APIs here. 同时删除 play-services-appindexing 编译此 API 替换:

//no longer include 'play-services-appindexing' compile
//compile 'com.google.android.gms:play-services-appindexing:10.0.0

我在几个月前第一次安装 firebase 服务时删除了 play-services-ads 编译,按照文档的指示,尽管包含它不会像现在包含 play-services-appindexing 那样使项目编译崩溃。

在上传发布 apk 时,不幸的是,在升级我的 sdk 并添加 firebase-appindexing 编译后,我发现三个权限现在已添加到我所需的权限中。这些不在我的清单中:

android.permission.READ_EXTERNAL_STORAGE,
android.permission.READ_PHONE_STATE, and
android.permission.WRITE_EXTERNAL_STORAGE

编辑 12/9/16: 正如 Gaurav 评论的那样,play-services version 10.0.1 已经消除了 READ_PHONE_STATE, READ_EXTERNAL_STORAGE, and WRITE_EXTERNAL_STORAGE, 添加的 'dangerous' 权限,导致我期待版本 10.0.0. 中的清单合并 这些权限调用一个特殊的对话框,可以阻止您的用户继续使用您的应用程序 ('Is this game trying to take over my phone?')。如果您使用 firebase 编译,请确保也将所有这些升级到 10.0.1。它们不会像播放服务编译那样变灰,这是应用程序 gradle 升级警告中的一个不幸的不一致。如果您忽略升级 firebase 编译以匹配播放服务编译,您会遇到臭名昭著的 'cannot access zzanb after using play-services' 项目编译崩溃 - .

现在 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'