AlanSTACK
AlanSTACK

Reputation: 6065

How to view all warning prompts in Android Studio

When coding, I sometimes get these helpful popups that notifies me when I made a mistake.

enter image description here

Is there a place in Android studio where I can get a list of them for a particular project - like a TODO list

(so I dont have to go through each file manually, scrolling, and checking for them)

Upvotes: 2

Views: 1252

Answers (1)

SimplyJaymin
SimplyJaymin

Reputation: 444

Follow the steps -

1) Click on Analyze > Inspect Code enter image description here

2) A dialog will popup, select the required scope enter image description here

3) The results will be displayed at the bottom panelenter image description here

Hope this helps

Upvotes: 5

Related Questions