解决Android studio中gradle依赖下载太慢的问题
在project中找到settings.gradle
原先是这样的代码
在pluginManagement中加入
maven(url = "https://maven.aliyun.com/repository/google")
maven(url = "https://maven.aliyun.com/repository/central")
maven(url = "https://maven.aliyun.com/repository/gradle-plugin")
在dependencyResolutionManagement中加入
maven(url = "https://maven.aliyun.com/repository/google")
maven(url = "https://maven.aliyun.com/repository/central")
如图所示
再次sync时就能成功,如若不成功,可网上继续查询,以上仅个人解决方法