本文主要是介绍Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
关闭代理:
项目下的gradle.properties去掉代理设置的代码:
删除gradle.properties后面4行有关代理的代码,重启AS:
使用自己下载的gradle:
将下载好的gradle放到这个文件夹,重启AS
其他看到的方法:
在gradle.properties文件添加相关代理
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=8580
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=8580
或
systemProp.http.proxyHost=some.proxy.adress.com
systemProp.http.proxyPort=3128
systemProp.https.proxyHost=some.proxy.adress.com
systemProp.https.proxyPort=3128
Tools – 》 options
一般这个勾勾上就行了,不行再 Make project 一下
这篇关于Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!