- build.gradle.kts: 移除 composeMultiplatform、kotlinMultiplatform 插件 - settings.gradle.kts: 移除 JetBrains maven 仓库 - libs.versions.toml: CMP 依赖替换为 AndroidX Compose BOM - Licenses.kt: 更新依赖列表 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32 lines
766 B
Plaintext
32 lines
766 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")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
include(":shared")
|
|
include(":androidApp") |