在as添加glide依赖失败问题,报如下错误
Error:(30, 13) Failed to resolve: com.github.bumptech.glide:glide:3.7.0
在 项目的根目录的build.gradle 添加如下代码
repositories {
jcenter {
url "https://jcenter.bintray.com/"
}
maven {
url "https://repo1.maven.org/maven2"
}
}
}
注意是https的安全连接
来源:CSDN
作者:weiyitai2012
链接:https://blog.csdn.net/weiyitai2012/article/details/76136022