Andromeda
A collection of Android libraries for simplifying development
Usage
Andromeda uses Jitpack for distribution, the following gradle dependency can be added:
In the root build.gradle file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
In the project specific build.gradle file (all modules):
dependencies {
// Tag is the release number
implementation 'com.github.kylecorry31:andromeda:Tag'
}
In the project specific build.gradle file (specific module):
dependencies {
// Tag is the release number
// Module is the specific module name, it shares the folder name of the top level folders in this repo (ex. buzz)
implementation 'com.github.kylecorry31.andromeda:Module:Tag'
}
See the releases page for the latest version.