1. agp -> v8.1.0 2. gradle -> v8.0 3. 添加 gradle version catalogs 管理依赖,替换 buildSrc 方式,目前只将插件部分重构,其余依赖后续版本中重构
8 lines
335 B
Plaintext
8 lines
335 B
Plaintext
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
|
|
plugins {
|
|
alias(libs.plugins.application) apply false
|
|
alias(libs.plugins.library) apply false
|
|
alias(libs.plugins.kotlin) apply false
|
|
alias(libs.plugins.hilt) apply false
|
|
}
|
|
true // Needed to make the Suppress annotation work for the plugins block |