mapbox-gl-native-android
mapbox-gl-native-android copied to clipboard
Cannot find implementation mapbox-android-sdk:7.3.0-SNAPSHOT
I used 7.3.0. snapshot in my implementation (and I don't want to update to the recent version)
implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.3.0-SNAPSHOT'
Several days ago this implementation stopped working (can't find the file).
I've added DOWNLOAD_TOKEN as well as this code in gradle:
maven { url 'https://api.mapbox.com/downloads/v2/releases/maven' authentication { basic(BasicAuthentication) } credentials { // Do not change the username below. // This should always be
mapbox (not your username). username = 'mapbox' // Use the secret token you stored in gradle.properties as the password password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: "" }
Releases (like 9.4.0) are downloading fine. However I still can't get a 7.3.0-SNAPSHOT. Can someone help?
Can I manually find and add to the Android Studio as a cached version?