mr nooby noob
mr nooby noob

Reputation: 2253

How to stop android studio from running

How to I stop my code from running in Android Studio? I have tried selecting the program under the Java folder, but the "Terminate Application" button is grayed out. It's really annoying how the long is going crazy even though I have ended the app on my phone...

Here is a screenshot of my screen if it helps:

enter image description here

Upvotes: 0

Views: 2189

Answers (2)

Alexander Micklewright
Alexander Micklewright

Reputation: 302

If you are referring to the lines in the logcat that keep appearing even when you app is stopped, this is normal, your phone keeps running other apps and logging status messages.

To suppress this output try selecting you application in the drop down menu on the right to show only your app's output

Upvotes: 4

kristyna
kristyna

Reputation: 2099

From this answer:

You need to select the process com.mycompany.myfirstapp and then press the Terminate Application button.

Upvotes: 0

Related Questions