- 在版本目录中添加 spotless 插件 8.5.1 - 配置 Kotlin 源码和 Gradle Kotlin DSL 脚本格式化 - 使用 ktlint 引擎,启用 trimTrailingWhitespace 和 endWithNewline Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
785 B
Plaintext
34 lines
785 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(":core")
|
|
include(":app")
|
|
include(":macrobenchmark")
|