android studio gradle:download http://jcenter 卡住解决办法

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

修改项目根目录下的文件 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/'}
    }
}

然后选择重新构建项目就可以了

第一种方法

使用开源中国的maven库

阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/

替换项目根目录下build.gradle中的

    repositories {
          jcenter()
    }

为:

    repositories {
        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }

第二种方法

修改https为 http协议下载

http://jcenter/bintray.com/

替换项目根目录下build.gradle中的

repositories {
     jcenter()
}

为:

 repositories {
       jcenter(){ url 'http://jcenter.bintray.com/'}
    }       

你可能感兴趣的:(移动开发)