美文网首页
Androidstudio 编译报错:Could not dow

Androidstudio 编译报错:Could not dow

作者: maiduoduo | 来源:发表于2021-01-28 13:49 被阅读0次

错误信息:

Could not download BaseRecyclerViewAdapterHelper.aar (com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30): Skipped > due to earlier error

Could not download glide.aar

今天glide里面依赖了第三方库:

com.github.bumptech.glide:glide:4.5.0

结果报错:

image

试了很多方法都不管用....

最后通过下面的方式修改gradle的配置终于下载glide成功,运行成功!

image

如果还不成功,检查一下build.gradle的配置。


allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url 'https://maven.google.com/' }
        maven { url "https://dl.google.com/dl/android/maven2/" }
        maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
    }
}

相关文章

网友评论

      本文标题:Androidstudio 编译报错:Could not dow

      本文链接:https://www.haomeiwen.com/subject/fhdazktx.html