Skip to content

1.0.0-alpha22

Latest
Compare
Choose a tag to compare
@nsk-mironov nsk-mironov released this 14 Apr 21:44
· 20 commits to develop since this release

This release introduces a new compile time validation that helps to detect unused @Contract and @Module imports. The validation is enabled by default and can be disabled in a two different ways:

  • For the entire project by putting lightsaber.validate.unused.imports=false to a root gradle.properties file
  • For a particular Gradle module by putting the following code to a corresponding build.gradle file
    lightsaber {
      validateUnusedImports = false
    }