3.0.0
版本发布时间: 2021-08-10 02:21:12
KeepSafe/dexcount-gradle-plugin最新发布版本:4.0.0(2023-01-17 19:56:55)
- BREAKING Port plugin from Kotlin to Java for better Gradle compatibility; public extension API changed. (#379)
- Add support for AGP 7.0.0
- Preliminary support for AGP 7.1.0 alphas
The dexcount
gradle configuration block now uses Gradle properties exclusively, as opposed to getFoo
and setFoo
functions. That means that your Groovy configuration code needs to change a bit:
dexcount {
// Instead of this,
runOnEachPackage true
// Do this
runOnEachPackage = true
}