阿里云镜像缺少 tyme4kt 的 iOS klib,导致 iOS 目标无法解析依赖。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
33 lines
838 B
Plaintext
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") |