Android alarm clock with embedded Ktor HTTP server for remote control. Features in-app and HTTP API alarm management, full-screen alarm activity with sound/vibration, DND bypass, boot persistence, and dark Material 3 UI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
629 B
Kotlin
26 lines
629 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 = "helios-alarm-clock"
|
|
include(":app")
|