Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 521 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 521 Bytes

caimito

To add the dependency to your Android project:

  1. Add the Sonatype Maven repository to your settings.gradle.kts file.
repositories {
    maven(url = "https://s01.oss.sonatype.org/content/repositories/releases/")
}
  1. Add the library to your dependencies
dependencies {
  // Pick one:

  // 1. Use caimito in your implementation only:
  implementation("dev.gravitycode.caimito:caimito:2.0.2")

  // 2. Use caimito types in your public API:
  api("dev.gravitycode.caimito:caimito:2.0.2")
}