Skip to content

3.0.0

Compare
Choose a tag to compare
@benjamin-bader benjamin-bader released this 09 Aug 18:21
· 117 commits to master since this release
  • 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
}