/kotlin-extensions

Kotlin helper functions to be used in JVM environments, built following SOLID principles. Available on JitPack 🚀.

Primary LanguageKotlinMIT LicenseMIT

Kotlin Extensions

Kotlin License Version

Kotlin helper functions to be used in JVM environments, built following SOLID principles.

Including in your project

Gradle

Add the code below to your root build.gradle file (not your module build.gradle file):

allprojects {
    repositories {
        ..
        maven { url 'https://jitpack.io' }
    }
}

Next, add the dependency below to your module's build.gradle file:

dependencies {
    implementation "com.github.davidepanidev:kotlin-extensions:2.0"
}