feat: scaffold Android project with dependencies

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-10 00:49:16 -04:00
parent 806ce23254
commit 2a9b21b67f
17 changed files with 621 additions and 0 deletions

16
settings.gradle.kts Normal file
View File

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