Android Could not find support-a

2020-03-27  本文已影响0人  DreamClouds

有个老项目,好久没整了,今天编译的时候报错,
Could not find support-annotations.jar

图片.png

ps:图片是别人的

网上的文章都说添加如下代码即可,

maven { url "https://maven.google.com"}

我添加还了还是不行,我是有开vpn的。

然后在这里https://github.com/jitpack/jitpack.io/issues/2623找到答案

尝试将

compile 'com.android.support:appcompat-v7:25.3.1'

修改为

 compile 'com.android.support:appcompat-v7:27.1.1'

重新编译解决问题,但又因是老项目出现版本问题,
遂改回compile 'com.android.support:appcompat-v7:25.3.1 编译正常

另一种方式,将google放在最前面,如下


allprojects {
    repositories {
        maven { url "https://maven.google.com" } //放在第一个
        jcenter()
        maven { url "https://jitpack.io" }//注意!!! RxCache 是托管于 jitpack 仓库的, 如果没有这一段代码将永远依赖不了 RxCache
        mavenCentral()
    }
}

参考:http://seolibs.com/post/84.html

上一篇下一篇

猜你喜欢

热点阅读