gpt4 book ai didi

android - 无法解析 : `com.google.android.gms:play-services-appindexing:10.0.0`

转载 作者:IT老高 更新时间:2023-10-28 21:47:49 25 4
gpt4 key购买 nike

在设置 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 services 版本 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 - 无法解析 : `com.google.android.gms:play-services-appindexing:10.0.0` ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40732418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com