2021-05-12 14:32:11
Android SDK 安裝連線超時無法讀取URL解決方法
Android Studio setup 卡住不會進,安裝連線超時無法讀取URL
Android SDK was installed to G:UsersRandolphAppDataLocalAndroidsdk
Refresh Sources:
Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-2.xml, reason: Connection timed out: connect
Fetched Add-ons List successfully
Refresh Sources
Failed to fetch URL http://dl-ssl.google.com/android/repository/repository-10.xml, reason: Connect Connection timed out: connect
Refresh Sources:
Failed to fetch URL http://dl-ssl.google.com/android/repository/repository-10.xml, reason: Connect Connection timed out: connect
There is nothing to install or update.
The following SDK component was not installed: build-tools-21.1.1
Refresh Sources:
Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-2.xml, reason: Connection timed out: connect
Fetched Add-ons List successfully
Refresh Sources
1
執行CMD
2
在cmd視窗執行記事本命令」notepad「
3
在開啟的記事本裡,點選」檔案「——」開啟「
4
在檔案名位置輸入:
C:Windowssystem32driversetchosts
點選開啟,
(正常情況你是無法找到HOSTS檔案位置,這是系統保護檔案,預設是隱藏的,手動開打還要去檔案夾工具裡取消所有檔案的隱藏功能,比較麻煩也會帶來很多不安全,所以我們建議用這種方式開啟,直接開啟檔案位置,隱藏也能開啟。)
5
開啟的HOSTS檔案後,看到最後一行
#::1 localhost
我們再複製最後一行貼上下去規則變成
#::1 localhost
#::1 localhost
然後再把最後一行改成連線GOOGLE的HOSTS檔案,變成
#::1 localhost
#74.125.237.1 dl-ssl.google.com
6
在SDK的安裝目錄下,找到BIN檔案夾,找到idea.properties檔案
7
用記事本開啟idea.properties檔案,最後一行新增:
disable.android.first.run=true
8
再次開啟Android Studio 就開以了
相關文章