learning_ai_clock/android/settings.gradle.kts

32 lines
763 B
Plaintext

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
rootProject.name = "ChronoMind"
include(":app")
include(":wear")
// ByteLyst Platform SDK — local composite build from sibling repo
includeBuild("../../learning_ai_common_plat/packages/kotlin-platform-sdk") {
dependencySubstitution {
substitute(module("com.bytelyst.platform:kotlin-platform-sdk")).using(project(":"))
}
}