Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 613 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 613 Bytes

Readme

This repository serves as an example of what could be done in a "sugar library" to add functionality to the bdk-android and bdk-jvm libraries.

To test the library, first build locally and deploy to your local Maven repository:

./gradlew publishToMavenLocal

Then add mavenLocal() to the list of repositories your app should fetch from and add it as a dependency:

// build.gradle.kts
repositories {
    mavenLocal()
}

dependencies {
    implementation("com.bdkutilities:sugar:0.25.0")
}