Files
kmp-template/settings.gradle.kts

32 lines
756 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 {
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")