https://github.com/kylecorry31/andromeda
A collection of Android libraries for simplifying development
https://github.com/kylecorry31/andromeda
Last synced: 22 days ago
JSON representation
A collection of Android libraries for simplifying development
- Host: GitHub
- URL: https://github.com/kylecorry31/andromeda
- Owner: kylecorry31
- License: other
- Created: 2021-08-09T11:59:42.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-05-25T15:40:39.000Z (24 days ago)
- Last Synced: 2026-05-25T16:25:45.258Z (24 days ago)
- Language: Kotlin
- Size: 2.32 MB
- Stars: 22
- Watchers: 3
- Forks: 6
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Andromeda
A collection of Android libraries for simplifying development using Android APIs.
This is intended for my use only at this point, so there isn't any documentation on it.
## Usage
Andromeda uses Jitpack for distribution, the following gradle dependency can be added:
In the root build.gradle file:
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
In the project specific build.gradle file (all modules):
```gradle
dependencies {
// Tag is the release number
implementation 'com.github.kylecorry31:andromeda:Tag'
}
```
In the project specific build.gradle file (specific module):
```gradle
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.