Download & Setup (Gradle KTS & Groovy)
Add GitHub Packages repository and the AppUtilX dependency. Package: Public package - no token required for usage.
Kotlin DSL (build.gradle.kts)
// Add in gradle/libs.versions.toml
apputilx = "1.4.0"
apputilx = { group = "com.github.mohamed-zaitoon", name = "apputilx", version.ref = "apputilx" }
// Add in settings.gradle.kts
repositories {
google()
mavenCentral()
maven {
maven { url = uri("https://jitpack.io") }
}
}
dependencies {
implementation(libs.apputilx)
}