32 lines
753 B
Plaintext
32 lines
753 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolution {
|
|
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(":"))
|
|
}
|
|
}
|