Appengine connection time out error

我的未来我决定 提交于 2019-11-29 17:57:56

As far as I know, connection timing out is a network problem .Go to File > Settings > Appearance and Behaviour > System Settings > HTTP Proxy and make sure your proxy settings look like this:

Perform gradle sync and see how it goes.

The problem was firewall blocking studio to update new library.When I disable firewall it works fine.

I had the same issue and I fixed it by specifying the proxy settings in gradle.properties file. Next to backend build.gradle file, I've created gradle.properties file and put there this:

systemProp.http.proxyHost=<prox_host>
systemProp.http.proxyPort=<proxy_port>

Specifying the proxy properties in Studio did not help me.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!