Repository for having the mostly used utility code needed at almost every android application
- Check documentation of image picker intent utility here.
- Check documentation for image compressor here.
Grab via gradle
:
In your project's build.gradle
file, add the following repostiory under allprojects
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Now in your app's build.gradle
file, add the following dependency
implementation 'com.github.kawnayeen:AndroidUtil:0.1.5'
Or you can add individual module, if needed.
- For image compressor
com.github.kawnayeen.AndroidUtil:compressor:0.1.5
- For image picker
com.github.kawnayeen.AndroidUtil:intentutil:0.1.5