Skip to content

lposidon/android.launcherutil

Repository files navigation

launcherutil

A library for android launcher creation (in alpha stage)

Features

  • App loading
  • Icon-related utilities
  • Send signals to live wallpaper
  • Kustom variables

Installation

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' }
    }
}