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 rootgradle.properties
file - For a particular Gradle module by putting the following code to a corresponding
build.gradle
filelightsaber { validateUnusedImports = false }