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

Latest commit

 

History

History
26 lines (20 loc) · 594 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 594 Bytes

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"
}