- 新增 :macrobenchmark 模块,提供自动 Baseline Profile 生成 - 扩展 proguard-rules.pro,保留所有业务类方法名确保 profile 匹配 - 全量 AOT 覆盖:冷启动 + 交互路径(年视图、周折叠、关于页等) - app/build.gradle.kts 新增 benchmark 构建类型 - README 简化 Baseline Profiles 维护指南 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
33 lines
784 B
Plaintext
33 lines
784 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") |