解决android studio引用远程仓库下载慢(JCenter下载慢)
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                解决android studio引用远程仓库下载慢(JCenter下载慢)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                原文:https://blog.csdn.net/linglingchenchen/article/details/62236723
第一種方法
使用開源中國的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/'}}?
轉載于:https://www.cnblogs.com/tc310/p/8909723.html
總結
以上是生活随笔為你收集整理的解决android studio引用远程仓库下载慢(JCenter下载慢)的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 使用镜像源安装EASY_INSTALL和
- 下一篇: 《Python学习之路 -- 字符串的方
