Files
slocker-launcher/app/build.gradle.kts
T
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

45 lines
1.0 KiB
Kotlin

plugins {
alias(libs.plugins.android.application)
}
android {
namespace = "ro.ceamac.slockerlauncher"
compileSdk {
version = release(37)
}
defaultConfig {
applicationId = "ro.ceamac.slockerlauncher"
minSdk = 23
targetSdk = 37
versionCode = 1
versionName = "0.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
optimization {
enable = false
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation(libs.androidx.appcompat)
implementation(libs.androidx.constraintlayout)
implementation(libs.androidx.core.ktx)
implementation(libs.material)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(libs.androidx.junit)
}