Home > Net >  How do i check the errors of the whole project? Android Studio
How do i check the errors of the whole project? Android Studio

Time:11-25

When I was using visual studio, in the one of the tabs it was a list of error of the entire project

But now I cannot find the equivalent of that windows, I can only watch the errors of the actual File

enter image description here

And the only way to know if there is another error I just gotta run the project and waste too much time.

Is there a way to see the errors of the whole project?

CodePudding user response:

You have this view also you can go there pressing 6

enter image description here

Also there's a short cut with ^, that jumps into that window showing the errors.

Another good question for this has been asnwered by Ashutosh Jindal at How to view the list of compile errors in IntelliJ?

CodePudding user response:

  • Hoover your mouse over the red circle and click it.
  • A new view will appear at the bottom of your main window.
  • Double clicking any of the listed errors will take you to that file and line in your project.
  • Related