Skip to content

Snapshot

You can download snapshots of Sandwich, which reflect early adopted API changes before shipping to the stable release.

Including the SNAPSHOT

Sandwich
Snapshots of the current development version of Sandwich are available, which track the latest versions.

To import snapshot versions on your project, add the code snippet below on your gradle file:

repositories {
   maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
repositories {
   maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}

Next, add the dependency below to your module's build.gradle file:

dependencies {
    implementation "com.github.skydoves:sandwich:2.0.8-SNAPSHOT"
}
dependencies {
    implementation("com.github.skydoves:sandwich:2.0.8-SNAPSHOT")
}