https://github.com/medavox/utils
reusable functionality for common tasks
https://github.com/medavox/utils
Last synced: about 1 month ago
JSON representation
reusable functionality for common tasks
- Host: GitHub
- URL: https://github.com/medavox/utils
- Owner: medavox
- Created: 2015-12-05T13:52:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T13:20:44.000Z (about 7 years ago)
- Last Synced: 2025-02-12T10:19:25.583Z (3 months ago)
- Language: Java
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Utils
Useful, reusable functionality for common tasks in Java.# Usage
To use code from this repository in your gradle-enabled project, just add this as a jitpack dependency to your build.gradle:
```gradle
...dependencies {
compile 'com.github.medavox:utils:v0.11'
}...
```you'll also need to enable the jitpack repository:
```gradle
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```For more info on Jitpack, see .