Skip to content

v0.24.4

Compare
Choose a tag to compare
@kageiit kageiit released this 01 Aug 23:57
· 536 commits to master since this release

Enhancements

  • Add alternative approach to deal with dependency conflicts in android apps (#490)

Provides an alternative way to force dependencies across all sub projects. This can be beneficial as gradle performance starts to degrade with many dependency substitution rules.

Consumers can now set forced versions of dependencies via

dependencies {
  forcedOkbuck "com.foo:bar:1.0.0"
}

To force all sub projects to use 1.0.0 of com.foo:bar regardless of what they pull in transitively.

The okbuck wiki has been updated to reflect the same