diff options
author | Łukasz Paczos <lukas.paczos@gmail.com> | 2019-03-08 13:26:48 +0100 |
---|---|---|
committer | Łukasz Paczos <lukasz.paczos@mapbox.com> | 2019-03-08 17:04:27 +0100 |
commit | c4115f0539be1834db40b318eb4ebb9e27d1eafb (patch) | |
tree | ced46189a5bdf439e664f3e1d9befcb17b731cdf /platform/android/README.md | |
parent | 744d92e7636ffcba7aea7a302315326b1098d8dc (diff) | |
download | qtlocation-mapboxgl-c4115f0539be1834db40b318eb4ebb9e27d1eafb.tar.gz |
[android] publish SNAPSHOTs to oss.jfrog.org
Diffstat (limited to 'platform/android/README.md')
-rw-r--r-- | platform/android/README.md | 6 |
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/' } } } ``` |