66

I tried various steps to remove breakpoints from Android Studio . One of them listed in question BreakPoint link

I followed this but , still there are some green colored with red circle remaining , what are those as seen in image below and how to remove those effectively.

Image after removing breakpoint

Community
  • 1
  • 1
Yatin
  • 2,969
  • 9
  • 34
  • 68

10 Answers10

96

Remove all breakpoints in android studio

Click on red icon which is below to stop debug. you will see a window there you can remove all breakpoints.

PRATEEK BHARDWAJ
  • 2,364
  • 2
  • 21
  • 35
56
Step 1: ctrl+shift+F8
Step 2: ctrl+A
Step 3: Click delete or Alt+delete
Step 4: done
Makvin
  • 3,475
  • 27
  • 26
32

First, click on debug tab and you see a screen like this:-

enter image description here

Now you will see a window like this:-

enter image description here

From this screen you can remove breakpoints by clicking (-) button. To remove all break point first select Java Line break Point option and then click (-).

VikasGoyal
  • 3,308
  • 1
  • 22
  • 42
13

In debug option there is button disable break point button this will disable all break point

PankajAndroid
  • 2,689
  • 3
  • 27
  • 41
  • 2
    I thought this will only mute the breakpoints, but NOT remove them. OP is asking how to remove BPs. – callmebob Jan 11 '19 at 09:44
  • 1
    Why is this answer getting upvoted? It does absolutely NOT remove any breakpoints whatsoever. – Andor Németh Oct 22 '20 at 07:58
  • 1
    @PankajAndroid I tried it and while it does mute breakpoints, it does not remove them. The question was how to remove them, not how to deactivate/mute/ignore them. – Andor Németh Oct 27 '20 at 12:43
11

My SOP:

  • select Favorites from the left hand edge of the screen;
  • expandBreakpoints
  • select those you wish to remove
  • press delete or the - button (located at the bottom of the window)

Alternative:

⌘ ⇧ F8 (Mac) or Ctrl ⇧ F8 (Windows) brings up the breakpoint dialog. Highlight the breakpoints you want to remove and press the - button.

Tom Howard
  • 4,672
  • 2
  • 43
  • 48
9

Remove all breakpoints in three simple steps:

  1. Double Shift (or tap the search icon in the upper right corner).
  2. Search for "Remove all".
  3. Click "Remove all breakpoints" enter image description here
Ivo Stoyanov
  • 16,256
  • 8
  • 62
  • 65
6

Open breakpoint window short cut key using Ctrl + shift +f8

5

Pressing ctrl+shift+F8 will pop up the Breakpoints window and then you can disable/enable all break point by clicking the check box in the Java line Breakpoints Treeview

Omid Golestan
  • 71
  • 1
  • 4
3

Its really easy to remove all the break points.

  1. Run -> View BreakPoints... (OR) Ctrl + shift +f8 enter image description here

  2. BreakPoints dialog opens.

enter image description here

  1. To remove all break points uncheck the root (Ctrl+A and Delete) or to remove individual break points uncheck the individuals.

enter image description here

Rohit S
  • 714
  • 5
  • 7
2

Check this image for what it means:

enter image description here

Following the intellij docs it says:

  • To remove a breakpoint permanently, do one of the following:

    • On the main menu, choose Run | View Breakpoints or Ctrl+Shift+F8.
    • Select the desired break point and click - button

    • If all breakpoints from certain group need to be deleted:

      • Select the group on the left side of the widow and Press - or delete button
Krishna
  • 484
  • 7
  • 22