wpumain
wpumain

Reputation: 55

Debugging with Android Studio: Two different kinds of breakpoints

Working with Android Studio, I debug my app using breakpoints. There seem to be two kinds of breakpoints:

enter image description here enter image description here

Could someone explain the difference between those two breakpoints?

Upvotes: 4

Views: 2091

Answers (1)

PatrickMA
PatrickMA

Reputation: 887

According to the official JetBrains Help, the Breakpoint without the small tick means that the breakpoint is enabled and the other with the small tick means that the breakpoint is valid.

For more information, see https://www.jetbrains.com/idea/help/breakpoints-icons-and-statuses.html

Upvotes: 1

Related Questions