加快AndroidStudio gradle编译速度

修改build.gradle
添加阿里云maven仓库

buildscript {
	repositories {
	        google()
	        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
	        jcenter()
	       } 
    }
allprojects {
	repositories {
	        google()
	        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
	        jcenter()
	        }
    }
发布了100 篇原创文章 · 获赞 4 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_39827677/article/details/104928633
今日推荐