feat: Initial IPTV app with Google DNS and in-app updates

This commit is contained in:
Renato
2026-01-28 22:02:28 +00:00
commit 88dfda1482
35 changed files with 7720 additions and 0 deletions

17
settings.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "IPTVApp"
include(":app")