Hi, I've tried to set up Lint in my project follo...
# gradle
l
Hi, I've tried to set up Lint in my project following a modularized architecture. So, each module has a lint.xml filter file and its own lintOptions setup (such as the snipset below) lintOptions { apply from: "$root/config/quality/lint.gradle", to: it lintConfig file("project/lint.xml") htmlOutput file("build/lint-result.html") } However, i have noticed that not all issues are detected . For instance, after adding an unused drawable no occurrence of the "UnusedResource" issue is caught and the lint check is finished with success Someone knows about this behavior and how could i set up the Lint by module avoiding this behavior ? Thanks !