Files
kmp-template/settings.gradle.kts
2025-10-28 11:50:45 -03:00

43 lines
961 B
Kotlin

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("echo")
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
rootProject.name = "Template"
// Template App module
include(":app:composeApp")
// Core modules
include(":bedrock:designsystem")
include(":bedrock:common")
include(":bedrock:navigation")
// Feature modules
include(":features:common")