Skip to content

Using a Snapshot Version of the Library

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

To do so:

repositories {
    // ...
    maven("https://central.sonatype.com/repository/maven-snapshots")
}

dependencies {
    // Check the latest SNAPSHOT version from the link above
    // Core infrastructure (required)
    implementation("dev.chrisbanes.haze:haze:XXX-SNAPSHOT")

    // For blur effects (most users will need this)
    implementation("dev.chrisbanes.haze:haze-blur:XXX-SNAPSHOT")
}