Files
YAEP/settings.gradle.kts

34 lines
784 B
Kotlin
Raw Normal View History

2024-06-11 11:04:02 +02:00
@file:Suppress("UnstableApiUsage")
rootProject.name = "YAEP"
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()
}
}
2024-06-11 11:04:02 +02:00
include(":composeApp")