Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 829
user3290180 Avatar asked May 25 '16 13:05

user3290180


1 Answers

Answer to

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

Analyze > Inspect Code

That will run lint and list all warnings.

like image 197
malmling Avatar answered Nov 09 '22 21:11

malmling