博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决android studio引用远程仓库下载慢(JCenter下载慢)
阅读量:5745 次
发布时间:2019-06-18

本文共 866 字,大约阅读时间需要 2 分钟。

使用开源中国的maven库

阿里云的(速度飞快):

修改项目根目录下面的build.gradle文件,将jcenter()库注释掉,添加阿里的maven库,同时保留Google的maven库地址即可。

// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript {    repositories {        google()        //jcenter()        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}           }    dependencies {        classpath 'com.android.tools.build:gradle:3.3.0'                // NOTE: Do not place your application dependencies here; they belong        // in the individual module build.gradle files    }}allprojects {    repositories {        google()     //jcenter()        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}    }}task clean(type: Delete) {    delete rootProject.buildDir}

 另一个方法,在android studio的设置里面添加如下设置,下次就不用再改动这个文件了

 

转载于:https://www.cnblogs.com/tsts/p/11029182.html

你可能感兴趣的文章
FreeNAS8 ISCSI target & initiator for linux/windows
查看>>
cvs文件提交冲突解决方案
查看>>
PostgreSQL数据库集群初始化
查看>>
++重载
查看>>
Rainbond 5.0.4版本发布-做最好用的云应用操作系统
查看>>
nodejs 完成mqtt服务端
查看>>
在ASP.NET MVC 中获取当前URL、controller、action
查看>>
Spring IoC容器初的初始化过程
查看>>
sql server 触发器
查看>>
[工具]前端自动化工具grunt+bower+yoman
查看>>
自动化测试之WatiN(2)
查看>>
关于完成生鲜电商项目后的一点总结
查看>>
noip2012 普及组
查看>>
第二阶段 铁大Facebook——十天冲刺(10)
查看>>
Java判断是否为垃圾_Java GC如何判断对象是否为垃圾
查看>>
多项式前k项和java_多项式朴素贝叶斯softmax改变
查看>>
java数组只能交换0下标和n_编程练习-只用0交换排序数组
查看>>
centos7安装mysql视频教程_centos7安装mysql(完整)
查看>>
php图片赋值,php如何优雅地赋值
查看>>
【探索HTML5第二弹01】HTML5的前世今生以及来世
查看>>