Collection of custom views or widgets that I use in my apps.
Could be useful for others too.
- Add the jitpack repo in root level
build.gradle
if not already.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the library dependency in app level
build.gradle
.
dependencies {
compile 'com.github.corphish:widgets:1.1'
}
GPLv3