Android Studio配置的一些问题

1.开了FQ软件依然报错 “Error:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings either in IDE or Gradle.”

需要在gradle.properties文件中添加代理,默认的是:

systemProp.http.proxyHost=127.0.0.1

systemProp.http.proxyPort=8580

再把https设置加上就好

systemProp.http.proxyHost=127.0.0.1

systemProp.http.proxyPort=8580

systemProp.https.proxyHost=127.0.0.1

systemProp.https.proxyPort=8580`
    原文作者:Aimerd
    原文地址: https://www.jianshu.com/p/a81f1b81fd82
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞