Skip to content

v0.14.4

Compare
Choose a tag to compare
@kageiit kageiit released this 19 Jan 10:17
· 707 commits to master since this release

Enhancements

  • Converted a bunch of classes over to Java 8. Better overall performance, less groovy.

Bug fixes

  • Add project dependencies to annotation processor deps (#338)
  • Fix regression with target deps not being picked up from buckLint configurations (#339)

Potential Breaking Changes

  • Due to moving extension classes to java 8, the following syntax for configuring okbuck
okbuck {
  buildToolVersion "25.0.1"
  target "android-25"
}

Needs to be replaced with

okbuck {
  buildToolVersion = "25.0.1"
  target = "android-25"
}

Please take note of the slight change when upgrading