A library for android launcher creation (in alpha stage)
- App loading
- Icon-related utilities
- Send signals to live wallpaper
- Kustom variables
Add the dependency to your build.gradle(.kts)
file:
Kotlin | Groovy |
---|---|
dependencies {
// ...
implementation("io.posidon:android.launcherutil:22.0")
} |
dependencies {
// ...
implementation 'io.posidon:android.launcherutil:22.0'
} |
And also make sure that the jitpack.io
repository is included
Kotlin | Groovy |
---|---|
allprojects {
repositories {
// ...
maven {
url = uri("https://jitpack.io")
}
}
} |
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
} |