Hi, not sure if this even belongs here, but does a...
# community-support
j
Hi, not sure if this even belongs here, but does anyone have experience with Gradle downloads in a corporate environment (on Azure Virtual Desktop)? Whenever I sync my freshly checked out Android project, it tries to download Gradle. But I keep getting
FileNotFoundException
for
$HOME/.gradle/wrapper/dists/gradle-8.11.1-bin/xxxxx/gradle-8.11.1-bin.zip
and when I look into that folder there's only a
.lck
and
.part
files. I can actually download the ZIP in the browser, so access isn't entirely blocked.
v
Do you maybe need to use a proxy to access the outworld which is configured for the Browser but not for Gradle? This is most often the reason if Gradle cannot download something that you can download via Browser just fine.
j
As far as I can tell there's a system proxy set up. I can check if browser has different settings
v
I don't think Gradle uses the system proxy by default
1
e
yeah, it's more of Java's fault… there is a system property
java.net.useSystemProxies
but it's false by default
j
Thanks, that was the issue 👍
👌 1