Description
Is your feature request related to a problem? Please describe.
We experienced a CI failure with the following message from the plugin:
Caused by: org.gradle.internal.resource.transport.http.HttpErrorStatusCodeException: Could not HEAD 'https://teamcity.jetbrains.com/guestAuth/repository/download/AndroidStudioReleasesList/.lastSuccessful/android-studio-releases-list.xml'. Received status code 503 from server: Service Temporarily Unavailable
The plugin loads available android studio versions from ANDROID_STUDIO_PRODUCTS_RELEASES_URL
which points to https://jb.gg/android-studio-releases-list.xml
. That short URL redirects to the one above that returned the 503 response.
Describe the solution you'd like
Allow configuration of the android studio releases list so we can reduce our CI dependency on external resources, as we can already do with configuration options like pluginsRepositories
(which we point to a self-hosted artifactory mirror)
Describe alternatives you've considered
There aren't really any alternatives since the value is not configurable at this time.