Effectively using Android Lint in existing projects

While developing software, we often tend to follow certain architectures, design patterns and best practices. One of the most important practice is to continuously run Lint Checks. Let’s learn about what Lint is and how to effectively apply Android Lint to existing projects.
What is Lint?
Lint, or a linter, is a static code analysis tool used to flag programming errors, bugs, stylistic errors and suspicious constructs.
Why do Lint checks?
- Reduce syntax errors
- Makes code more intuitive
- Helps get rid of deprecated code practices
- Reminds for added TODOs
Android Lint —
Gradle Wrapper offers Lint check by a simple command 😁 —
Windows —
gradlew lint
Linux or Mac —
./gradlew lint
These commands do a complete project level check for Lint Issues and create an HTML file providing details about each at the following path —
/app/build/reports/lint-results-debug.html
The generated HTML while when opened in a browser provides lint issues along with their explanations.

This isn’t it, Android Lint not only checks for lint issues but also checks for performance, security, accessibility and much more. ✨

As the title of the article says — existing project, let’s talk about that. 😅
An existing project probably a few years old will certainly have 1000s of lint issues if never taken into consideration. Thus, it won’t be possible to fix these in one go. But in order to reduce future tech debt, it can be followed that new lint issues are fixed as they are added.
Android Lint offers creating a baseline file that stores all lint issues found in first run and then use it for future inspection runs so that only new issues are reported. In order to do this, simply add the below code in your app level build.gradle
android {
lintOptions {
baseline file("lint-baseline.xml")
}
}
In successive runs of the above lint command, only new lint issues will be shown in terminal. This makes lint issues going forward much more identifiable and easy to monitor. 👏
Conclusion —
We saw how easy it is to use Android Lint and maintain the code quality of existing Android Projects, thus reducing future tech debt.