Initial commit: LCK Control Phone App
Native Android phone app with Kotlin + Jetpack Compose + Material 3 dark theme. Features: TikTok-style video feed (public, no auth required), pairing code login, stream management, social profiles, P2P WebRTC device communication, file transfer. Feed starts without auth; social actions and other tabs gate behind pairing.
This commit is contained in:
26
settings.gradle.kts
Normal file
26
settings.gradle.kts
Normal file
@@ -0,0 +1,26 @@
|
||||
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 = "LCK Control App"
|
||||
include(":app")
|
||||
Reference in New Issue
Block a user