Redspace android-utils project is a collection of modules that provide useful functionality for Android developers.
This project uses JITpack for packaging, which provides on-the-fly build capability to get a release, specific module, or specific tag/commit into your project.
Add the JITpack repository to your root build.gradle
file:
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
Add dependency entries for each module to each of your interested modules' build.gradle
files:
dependencies {
implementation 'com.github.theREDspace.android-utils:${MODULE}:(release/tag/branch/commit)
}
Note: do not add the jitpack.io repository under buildscript.
Each directory in the project root (except gradle
) is a module that can be imported. Each module contains markdown with individual usage instructions.
Note that JITpack compiles components on demand, which means that, if you're the first user of a given commit, dependency resolution might fail the first time. Please retry a few times before reporting issues.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the BSD 3-clause License - see the LICENSE.md file for details