Sprouts - The Swing-Tree MVVM Property API
Null-safe, functional and event based properties.
<dependency>
<groupId>io.github.globaltcad</groupId>
<artifactId>sprouts</artifactId>
<version>2.0.0-M13</version>
</dependency>
Groovy DSL:
implementation 'io.github.globaltcad:sprouts:2.0.0-M13'
Kotlin DSL:
implementation("io.github.globaltcad:sprouts:2.0.0-M13")
1. Add the JitPack url in your root build.gradle
at the end of repositories
allprojects {
repositories {
//...
maven { url 'https://jitpack.io' }
}
}
2. Add sprouts as dependency
...either by specifiying the version tag:
dependencies {
implementation 'com.github.globaltcad:sprouts:2.0.0-M13'
}
...or by using a custom commit hash instead:
dependencies {
implementation 'com.github.globaltcad:sprouts:5c4566d'//Any commit hash...
}