feat: scaffold counter_kt via init_kotlin_app

This commit is contained in:
2026-05-10 15:08:15 +02:00
commit 0b9e33da78
14 changed files with 315 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 = "counter_kt"
include(":app")
// Composite build: FnTheme + FnTokens desde el registry
includeBuild("../../kotlin/functions/ui") {
dependencySubstitution {
substitute(module("fn.compose:ui")).using(project(":"))
}
}