Files
kmp-template/settings.gradle.kts

36 lines
872 B
Kotlin
Raw Normal View History

2025-09-17 12:16:04 -03:00
rootProject.name = "Template"
2025-09-17 11:31:16 -03:00
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
2025-09-22 23:03:40 -03:00
includeBuild("echo")
2025-09-17 11:31:16 -03:00
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()
}
}
2025-09-22 12:26:25 -03:00
include(":app:composeApp")
2025-09-22 21:08:41 -03:00
include(":bedrock:designsystem")
include(":bedrock:common")
include(":bedrock:navigation")