解決android studio引用遠程倉庫下載慢(JCenter下載慢)
本文介紹了解決android studio引用遠程倉庫下載慢的兩種方法,具體如下:
第一種方法
使用開源中國的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協(xié)議下載
http://jcenter/bintray.com/
替換項目根目錄下build.gradle中的
repositories {
jcenter()
}
為:
repositories {
jcenter(){ url 'http://jcenter.bintray.com/'}
}
到此這篇關(guān)于解決android studio引用遠程倉庫下載慢(JCenter下載慢)的文章就介紹到這了,更多相關(guān)android studio引用遠程倉庫下載慢內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Android復選框CheckBox與開關(guān)按鈕Switch及單選按鈕RadioButton使用示例詳解
這篇文章主要介紹了Android復選框CheckBox與開關(guān)按鈕Switch及單選按鈕RadioButton使用示例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習吧2022-09-09
Android使用SlidingPaneLayout 實現(xiàn)仿微信的滑動返回
這篇文章主要介紹了Android使用SlidingPaneLayout 實現(xiàn)仿微信的滑動返回,需要的朋友可以參考下2018-04-04
Android 詳解ThreadLocal及InheritableThreadLocal
這篇文章主要介紹了Android 詳解ThreadLocal及InheritableThreadLocal的相關(guān)資料,需要的朋友可以參考下2017-01-01
ANDROID BottomNavigationBar底部導航欄的實現(xiàn)示例
本篇文章主要介紹了ANDROID BottomNavigationBar底部導航欄的實現(xiàn)示例,非常具有實用價值,需要的朋友可以參考下2017-10-10
Android?獲取手機已安裝的應用列表實現(xiàn)詳解
這篇文章主要介紹了Android?獲取手機已安裝的應用列表的實現(xiàn),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-08-08

