yayacal/settings.gradle.kts
xfy 3bf05b5077 移除阿里云镜像源,改用默认 Maven Central/Google 仓库
阿里云镜像缺少 tyme4kt 的 iOS klib,导致 iOS 目标无法解析依赖。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-17 09:16:03 +08:00

33 lines
838 B
Plaintext

rootProject.name = "YaYa"
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")
}
}
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
mavenCentral()
}
}
include(":shared")
include(":androidApp")