Skip to content

Using a Snapshot Version

Kaustubh Patange edited this page Sep 7, 2021 · 1 revision

If you like to depend on the cutting edge version of the navigator library, you can use the snapshot versions that are published to Sonatype's snapshot repository. These are updated on every commit to master.

repositories {
    // ...
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
    // Check the latest SNAPSHOT version from the link above
    implementation 'io.github.kaustubhpatange:navigator:xxx-SNAPSHOT'
}

The snapshot version are in the following format, example:

  • 0.1-alpha20-8d46307-SNAPSHOT is a build from master with commit 8d46307.
Clone this wiki locally