android studio gradle 国内代理

使用阿里云的国内镜像仓库地址,就可以快速的下载需要的文件

修改项目根目录下的文件 build.gradle :


 
  1. buildscript {  
  2.     repositories {  
  3.         maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}  
  4.     }  
  5. }  
  6.   
  7. allprojects {  
  8.     repositories {  
  9.         maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}  
  10.     }  
  11. }  

猜你喜欢

转载自www.cnblogs.com/honeynm/p/8990969.html