1.去网站搜索你需要依赖的gradle引用地址
JCenter
https://bintray.com/bintray/jcenter
MavenCenter
2.更改项目build.gradle JCenter/mavenCentral
repositories { jcenter() }3.在你需要使用的app中添加该地址
dependencies { compile fileTree(dir: 'libs',include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.0' compile 'com.facebook.fresco:fresco:0.9.0' }4.build 原文链接:https://www.f2er.com/javaschema/284130.html