设置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'
答案 0 :(得分:38)
您正在寻找的appindexing库目前处于新的gradle目标之下。
您想将compile 'com.google.firebase:firebase-appindexing:10.0.0'
添加到应用的build.gradle
文件中:)
您可以看到最新的libraries here.
答案 1 :(得分:26)
现在已发布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'
答案 2 :(得分:12)
您好,无论何时遇到此类错误,首先要做的是检查您的Android Studio中是否安装了最新版本的google存储库。我有同样的问题,并在更新后,一切正常。希望它有所帮助。
答案 3 :(得分:4)
我必须做两件事。 添加:
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时,我发现在升级我的sdks并添加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,
生成的10.0.0.
权限我期望版本10.0.1
中的清单合并这些权限会调用一个特殊的对话框,可以阻止用户继续使用您的应用(这个游戏是否试图接管我的手机?&#39;)。如果您使用firebase编译,请务必将所有这些编译升级到<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
。他们不会像播放服务编译一样变得灰暗,这是app gradle升级警告中不幸的不一致。如果您忽略升级firebase编译以匹配播放服务编译,那么在使用播放服务后,您将无法访问zzanb&#39;项目编译崩溃 - Firebase Error cannot access zzanb after using play-services-xxx:9.8.00。