今天遇到Retrofit 版本问题,需要更新Retrofit版本为最新时,
下载是超级慢,等了足足20分钟, 我憋不住了。查找解决方案:
解决方案::
使用阿里云的国内镜像仓库地址,就可以快速的下载需要的文件
修改项目根目录下的文件 build.gradle :
buildscript{
repositories{
maven{url'http://maven.aliyun.com/nexus/content/groups/public/'}
}}
allprojects{
repositories{
maven{url'http://maven.aliyun.com/nexus/content/groups/public/'}
}}
然后选择重新构建项目就可以了