I read several similar questions and documentation, but I was not able to solve my problem with the corporate firewall my machine is sitting on. The error I am getting is “Failed to update Gradle project” Unknown services.gradle.org node. Everything that I read and understood makes me believe that this is a proxy server problem. I tried setting the proxy properties in the gradle.properties file in the Project folder, so my gradle.properties file looks like this:
systemProp.http.proxyHost=proxy.company.com
systemProp.http.proxyPort=83
systemProp.http.proxyUser=username
systemProp.http.proxyPassword=password
systemProp.http.auth.ntlm.domain=domain
systemProp.https.proxyHost=proxy.company.com
systemProp.https.proxyPort=83
systemProp.https.proxyUser=username
systemProp.https.proxyPassword=password
systemProp.https.auth.ntlm.domain=domain
I also tried setting global Gradle settings by choosing File-> Settings → Gradle and setting Gradle VM parameters using:
-Dhttp.proxyHost=proxy.company.com -Dhttp.proxyPort=83 -Dhttp.proxyUser=username -Dhttp.proxyPassword=password
I don't see any documentation on where else to set this http proxy option, please help if you can.