赞
踩
参考:
Android Studio在构建项目时会拉取gradle资源,而goole和jcenter在国内的网络环境并不好用,容易产生connect timeout等错误。因此需要将地址修改成阿里云的国内镜像。
添加阿里云镜像
阿里云镜像服务地址为:
修改build.gradle文件,具体的代码为:
buildscript { //阿里云镜像 repositories { maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' } maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'} } dependencies { classpath 'com.android.tools.build:gradle:3.1.2' } } allprojects { //阿里云镜像 repositories { maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'} maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'} } }
之后便可以使用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。