googlesamples/android-custom-lint-rules

Library module implementation check module may be unnecessary

glorinli opened this issue · 1 comments

implementation project(':checks')

If we add this implementation line, it will add a dependency of checks module after we publish to maven, but it is unnecessary because the aar will contain lint.jar.

You can, but you should add implementation and lintChecks both. Otherwise it will not work
implementation project(':checks')
lintChecks project(':checks')