Just a simple collection of kotlin extensions for various purposes.
Add the JitPack repository in your root build.gradle
at the end of repositories
:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add the JitPack repository in your settings.gradle
file in the repositories
block of dependencyResolutionManagement
:
dependencyResolutionManagement {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add the dependency in your project level build.gradle
file.
dependencies {
implementation 'com.github.MCeley:kotlin-extensions:1.1.0'
}