user3290180
user3290180

Reputation: 4410

Android Studio: how to see a list of all warnings?

If I change editor settings, I can see more warnings marked in yellow but I have to find and see them manually. I need a list at compilation finished, so I can click and inspect each of them.

Android studio is 2.1.1

EDIT: in particular I need to see all warnings related to minSdk changes in the app gradle script

Upvotes: 67

Views: 21436

Answers (2)

malmling
malmling

Reputation: 2518

Answer to

Android Studio: how to see a list of all warnings?

Code > Inspect Code

That will run lint and list all warnings.

Upvotes: 133

Muhaiminur Rahman
Muhaiminur Rahman

Reputation: 3152

For android studio you can do this way

First click to analyze in android studio like this way

enter image description here

second you have to inspect code this way

enter image description here

Upvotes: -2

Related Questions