Skip to content

Snapshot

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

Including the SNAPSHOT

Landscapist
Snapshots of the current development version of Landscapist 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:landscapist-glide:2.3.4-SNAPSHOT"
}
dependencies {
    implementation("com.github.skydoves:landscapist-glide:2.3.4-SNAPSHOT")
}