feat: scaffold hello_android via init_kotlin_app

This commit is contained in:
2026-06-03 23:31:34 +02:00
commit 03463421e8
15 changed files with 555 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "hello_android"
include(":app")
// Composite build: FnTheme + FnTokens desde el registry
includeBuild("../../kotlin/functions/ui") {
dependencySubstitution {
substitute(module("fn.compose:ui")).using(project(":"))
}
}