Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 912 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 912 Bytes

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"
}