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