Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1 KB

README.md

File metadata and controls

30 lines (23 loc) · 1 KB

Android Extensions

Kotlin Android License Version

Library containing some helper functions and extensions of the Android framework components, build according 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:android-extensions:2.1.1"
}