android-utility
A handy set of utility for android
Add this in your root build.gradle
file ( not your module build.gradle
file):
allprojects {
repositories {
...
maven {
url "https://jitpack.io"
}
}
}
Dependency
Add this to your module's build.gradle
file (make sure the version matches the JitPack badge above):
dependencies {
... compile 'com.github.aaabidunique:android-utility:1.1.0'
}
If you want to use the latest code present in branch master
then use below code:
dependencies {
... compile 'com.github.aaabidunique:android-utility:master-SNAPSHOT'
}
Gradle can cache the SNAPSHOT
builds. You could add the following configuration in your build.gradle file in order to ensure Gradle always picks up the ‘freshest’ version of the build:
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
List of Utility/Helper
ClipBoardUtility
This class is used for performing android clipboard related operation. More Info
DefaultSharedPreferenceHelper
This class is used for getting info from default android shared preferences. More Info
ExternalActionUtility
This class is used for performingexternal action/operation. More Info
SharedPreferenceHelper
This class is used for performing operation on android shared preferences. More Info
ValidationUtility
This class is used for performing validation for various java objects. More Info
More coming soon...
For complete docs click here
Apps using android-utility
If you are using android-utility in your app and would like to be listed here, please let me know by opening a new issue!
- Device Tool - Playstore
Created & Maintained By
If you found this library helpful and want to help the developer, consider buying a cup of
☕?