Files
slocker-launcher/settings.gradle.kts
ceamac fb4d10467a Add Slocker Launcher app, CLAUDE.md, and Apache 2.0 license
Kiosk boot-starter for slocker-lite: auto-launches on boot, shows a
skippable countdown, then takes over the screen (fullscreen, black,
screen kept on) while running a user-configured command in the
background.
2026-09-14 05:29:53 +00:00

27 lines
627 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Slocker Launcher"
include(":app")