Reputation: 1110
In Eclipse, any lint errors or warnings are both highlighted in the code file, but also in the package tree with icons highlighting files with warnings/errors.
Try as I might, I can't find a way to replicate this functionality in Android Studio. Does anyone know of a way to do this? Is there an IntelliJ plugin I just can't find that might help?
Upvotes: 10
Views: 6846
Reputation: 91
try looking at the error report file located: ProjectDir/app/build/report/lint-results-release-fatal.html
Upvotes: 9
Reputation: 237
As per android developer docs, we can inspect the lint error below way
1.In the Android view, open your project and select the project, a folder, or a file that you want to analyze.
2.From the menu bar, select Analyze > Inspect Code.
3.In the Specify Inspection Scope dialog, review the settings.
Reference click here
Upvotes: 4
Reputation: 39
To manually run inspections in Android Studio, from the application or right-click menu, choose Analyze > Inspect Code.
Upvotes: 0