Files
AndroidBaseFrameMVVM/build.gradle.kts
Quyunshuo 337f7fa15e build: 版本兼容升级
1. agp -> v8.1.0
2. gradle -> v8.0
3. 添加 gradle version catalogs 管理依赖,替换 buildSrc 方式,目前只将插件部分重构,其余依赖后续版本中重构
2023-08-20 20:23:09 +08:00

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