在添加外部依赖库的时候或者导入其他项目时可能会遇到can't resolve *** 问题,根据我的查阅和经验,这应该是由于特色外网的关系,所以不要方,不是项目的问题
在project下的build.gradle文件中
allprojects {
repositories {
...
maven { url 'https://maven.google.com' }//解决了can't resolve的问题
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://jitpack.io' }
maven { url 'https://maven.aliyun.com/repository/public/' }
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url 'https://maven.aliyun.com/repository/jcenter/' }
maven { url 'https://maven.aliyun.com/repository/central/' }
maven { url 'http://maven.ghostscript.com/' }
google()
jcenter()
...
}
}
把这些代理都加进去,sync,一般情况可以解决build的速度和can't resolve问题。