summaryrefslogtreecommitdiff
path: root/platform/android/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/README.md')
-rw-r--r--platform/android/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/android/README.md b/platform/android/README.md
index 85eeae52e0..739096877d 100644
--- a/platform/android/README.md
+++ b/platform/android/README.md
@@ -98,11 +98,11 @@ More information about building and distributing this project in [DISTRIBUTE.md]
#### Using the SDK snapshot
-Instead of using the latest stable release of the Maps SDK for Android, you can use a "snapshot" or the beta version if there is one available. Our snapshots are built every time a Github pull request adds code to this repository's `master` branch. If you'd like to use a snapshot build, your Android project's gradle file should have -SNAPSHOT appended to the SDK version number. For example, the `5.2.0-SNAPSHOT` would look like:
+Instead of using the latest stable release of the Maps SDK for Android, you can use a "snapshot" or the beta version if there is one available. Our snapshots are built every time a Github pull request adds code to this repository's `master` branch. If you'd like to use a snapshot build, your Android project's gradle file should have -SNAPSHOT appended to the SDK version number. For example, the `7.3.0-SNAPSHOT` would look like:
```java
// Mapbox SDK dependency
-implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:5.2.0-SNAPSHOT'
+implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.3.0-SNAPSHOT'
```
You also need to have the section below in your build.gradle root folder to be able to resolve the SNAPSHOT dependencies:
@@ -110,7 +110,7 @@ You also need to have the section below in your build.gradle root folder to be a
allprojects {
repositories {
jcenter()
- maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
+ maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local/' }
}
}
```