您的位置:首页 > 编程语言

Error:(30, 13) Failed to resolve: com.github.bumptech.glide:glide:3.7.0

2017-07-26 11:35 2907 查看
在as添加glide依赖失败问题,报如下错误

Error:(30, 13) Failed to resolve: com.github.bumptech.glide:glide:3.7.0 

在 项目的根目录的build.gradle 添加如下代码

allprojects {

    repositories {

        jcenter {

            url "https://jcenter.bintray.com/"

        }

        maven  {

            url "https://repo1.maven.org/maven2"

        }

    }

}

注意是https的安全连接
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐