Josh Kitchens
Josh Kitchens

Reputation: 1110

I can't find a way to show lint errors in Android Studios project view

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

Answers (3)

Денис Гейко
Денис Гейко

Reputation: 91

try looking at the error report file located: ProjectDir/app/build/report/lint-results-release-fatal.html

Upvotes: 9

Harish
Harish

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

animesh suman
animesh suman

Reputation: 39

To manually run inspections in Android Studio, from the application or right-click menu, choose Analyze > Inspect Code.

Upvotes: 0

Related Questions