Null-safe, functional and event based properties.
<dependency>
<groupId>io.github.globaltcad</groupId>
<artifactId>sprouts</artifactId>
<version>2.0.0-M11</version>
</dependency>
Groovy DSL:
implementation 'io.github.globaltcad:sprouts:2.0.0-M11'
Kotlin DSL:
implementation("io.github.globaltcad:sprouts:2.0.0-M11")
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-M11'
}
...or by using a custom commit hash instead:
dependencies {
implementation 'com.github.globaltcad:sprouts:a191929'//Any commit hash...
}