Files
kmp-template/settings.gradle.kts
2025-09-26 11:00:51 -03:00

37 lines
891 B
Kotlin

rootProject.name = "Template"
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()
}
}
include(":app:composeApp")
include(":bedrock:designsystem")
include(":bedrock:common")
include(":bedrock:navigation")
include(":common")