'dl.bintray 502 Bad Gateway Android
This is my error
Could not GET 'http://dl.bintray.com/microsoftazuremobile/SDK/com/google/android/gms/play-services-measurement-base/maven-metadata.xml'. Received status code 502 from server: Bad Gateway
My gradle is online
I tried some possibilities upgrade and down grade version of dependencies.
repositories {
maven {
url "http://dl.bintray.com/microsoftazuremobile/SDK"
}
maven { url 'https://maven.fabric.io/public' }
maven Central()
}
which dependencies should added to resolve this issues?...
Solution 1:[1]
JFrog Bintray is Deprecated. Below is the complete details. https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
Can you please check with the "microsoft azure mobile" organization to which path they have migrated the artifacts. The reason is before JFrog Bintray Deprecation the "microsoft azure mobile" organization might have moved the data/artifacts to different location.
Solution 2:[2]
Apparently, you don't need to put:
maven {
url "http://dl.bintray.com/microsoftazuremobile/SDK"
}
If you have included mavenCentral()
then it will be enough. Otherwise, you have to include mavenCentral()
to repositories
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | JayanthSuresh |
Solution 2 | Oskar |