今天第一次用android studio,下了個比較新的1.0.1 linux版本,結果啟動時老是出現以下錯誤:
[ 6987] WARN - ateSettings.impl.UpdateChecker - Connection failed. Please check your network connection and try again.
百度了以下,都沒找到可行方案,最后在google里找到了解決方案,在此記錄下來,供大家參考。
方法1:
到android studio安裝目錄,打開bin目錄,編輯idea.properties, 在文件末尾添加:
disable.android.first.run=true
這將禁用第一次運行。
然后打開 android studio, 在Settings > HTTP Proxy settings設置代理相關參數,關閉android studio.
再次打開idea.properties文件,刪除剛剛添加的 disable.android.first.run=true ,並重新打開android studio .
因為已經設置了代理,現在android studio就可以正常啟動了。
方法2:
創建或者修改文件: ~/.AndroidStudio/config/options/other.xml 或者
~/.AndroidStudioBeta/config/options/other.xml ,該目錄根據Android Studio 版本不同可能有差異.
<?xml version="1.0" encoding="UTF-8"?>
<application>
<component name="HttpConfigurable">
<option name="USE_HTTP_PROXY" value="true" />
<option name="PROXY_HOST" value="127.0.0.1" />
<option name="PROXY_PORT" value="3128" />
</component>
</application>
將127.0.0.1 和3128 修改成你的代理設置。
非常喜歡博客園,希望可以跟大家一起交流。
