Gradle sync failed: Connection refused

从github上下载了一份代码,准备使用Android Studio编译,显示如下错误

Gradle sync failed: Connection refused

发现是在gradle.properties中有加了proxy设置。移除下面的proxy设置,可以解决这个错误,

systemProp.https.proxyPort=8787
systemProp.http.proxyHost=127.0.0.1
systemProp.https.proxyHost=127.0.0.1
systemProp.http.proxyPort=8787

 

你可能感兴趣的:(Android,Android)