错误:无法解决:com.android.support:support-annotations:26.0.2

时间:2017-10-30 16:37:40

标签: android

在尝试将Glide从3.7.0升级到4.2.0时,Android Studio抱怨道:

  

错误:无法解决:   com.android.support:support-annotations:26.0.2安装存储库和同步项目
打开   档案
显示   项目结构对话框

     

错误:无法解决:   com.android.support:support-annotations:26.0.2安装存储库和同步项目
打开   档案
显示   项目结构对话框

我尝试按以下方式更改locuslabs-android-sdk/sdk/build.gradle

从:

compile "com.github.bumptech.glide:glide:${glide}"

为:

compile("com.github.bumptech.glide:glide:${glide}") {
    exclude module: 'com.android.support:support-annotations'
}

但是Android Studio仍然抱怨同样的错误消息。

2 个答案:

答案 0 :(得分:0)

Failed to resolve: com.android.support:support-v13:26开始,我获得了表达排除的不同语法,这消除了问题:

compile("com.github.bumptech.glide:glide:${glide}") {
    exclude group: 'com.android.support', module: 'support-annotations'
}

答案 1 :(得分:0)

将以下行添加到 build.gradle (应用级别)文件中。

allprojects {
repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}

添加上面的行后 - 清理构建项目并运行