Hey folks, maybe it’s happening to some of you, but I am getting lately crashes due to being unable to download gradle dependencies. It might be that cloudflare is enforcing TLS 1.3 which java 11 is not supporting.
Anyway, I am sharing a quick fix here, maybe we can even commit that. The fix is to add the following line to gradle.properties:
systemProp.https.protocols=TLSv1.2
This forces TLS version 1.2 and the issue is resolved until we upgrade Java.