24 lines
531 B
Kotlin
24 lines
531 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "gallery_kt"
|
|
include(":app")
|
|
|
|
// Composite build: FnTheme + FnTokens desde el registry
|
|
includeBuild("../../kotlin/functions/ui") {
|
|
dependencySubstitution {
|
|
substitute(module("fn.compose:ui")).using(project(":"))
|
|
}
|
|
}
|