Open MarcinMoskala opened 5 years ago
I got the following error during Gradle build:
Could not GET Received status code 502 from server: <LibName> Bad Gateway
The solution was to add maven { url "https://maven.google.com" } in project-level:
maven { url "https://maven.google.com" }
buildscript { repositories { google() maven { url "https://maven.google.com" } //... } //... }
There might be some info about it.
Thanks for the report! Interesting, let me check if it's something related to the Gradle version. It's green in CI re-runs 🤔
I got the following error during Gradle build:
The solution was to add
maven { url "https://maven.google.com" }
in project-level:There might be some info about it.