Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

okuzawats/kotlin-stone

Repository files navigation

Stone

A minimal library for Android / Kotlin that offers Option and Either.

activate

Add the maven repository to root build.gradle.

allprojects {
  repositories {
    maven {
      url 'http://okuzawats.github.io/kotlin-stone/'
    }
  }
}

Add the dependency to module's build.gradle.

dependencies {
  implementation "com.okuzawats:stone:x.y.z"
}