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`