授权谷歌API错误

问题描述 投票:0回答:1

我正在尝试授权和使用google API for android但是当我尝试配置构建依赖项并同步项目时它会给我一个错误

Error:Execution failed for task ':app:prepareDebugAndroidTestDependencies'.> Dependency Error.

请参阅控制台了解详情

screenshot for the error

build gradle(app):

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'

compile 'com.google.android.gms:play-services-auth:10.2.0'

compile 'com.google.api-client:google-api-client:1.22.0'
compile 'com.google.api-client:google-api-client-android:1.22.0'

compile 'com.google.apis:google-api-services-people:v1-rev4-1.22.0'

我该怎么解决这个问题?

android api
1个回答
0
投票

不确定,但我认为你的谷歌apis是矛盾的

compile 'com.google.android.gms:play-services-auth:10.2.0'

compile 'com.google.api-client:google-api-client:1.22.0'

可能在内部使用其他依赖项,具有不同的版本。

尝试运行:/gradlew app:dependencies以查看所有依赖项

© www.soinside.com 2019 - 2024. All rights reserved.