feat: Implement initial Android launcher application with Compose, including app listing and launching capabilities.

This commit is contained in:
Jesus Hernandez
2025-12-23 00:29:46 -08:00
commit 556cf74ffd
18 changed files with 511 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Luncher"
include(":app")