Commit inicial: G Radio Remoto — Android

Cliente remoto Android (Kotlin + Jetpack Compose) para G Radio Player,
mismo protocolo TCP/relay que el cliente de escritorio: reproductor,
buscador, parrilla, pautaje, botonera, comercios y visor remotos.
This commit is contained in:
2026-08-23 01:18:21 -05:00
commit b5a0f3c671
44 changed files with 4303 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "GRadioClient"
include(":app")