Toolkt is a library that contains functions and extensions to improve Android development. Originally intended to be a module in the rimu! project.
In order to use this library in your project you need to add the dependency in your app's module build.gradle
.
dependencies {
implementation("com.github.Reco1I:Toolkt:1.0.15")
}
Make sure to have Maven and Jitpack repository declared on the root settings.gradle
.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
}
}
Alternatively you can clone the repository and add the project as a library module in your app.