Do not break when an exception occurs in Android Studio
Overview
I am developing using Android Studio.
If an exception occurs during debugging, it will break at the point where it occurs, but I will show you how to stop this function.
Method
1 run > View BreakPoints
2 Uncheck "Break on exception points" (for Dart)
What's the situation?
The reason why I want to do this is because it was annoying to go back to the back of the library and break a lot, especially when I can see the cause to some extent.
I think the basics should be enabled.
Comments