Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Device monitoring in Android Studio?

Android Studio 1.2 came up with new Future of device monitoring, it automatically starts monitoring the device when you plug it in, even if your app is not running.

I notice that it slow down the work in Android Studio(Not that it is Speedy Gonzales right now...). It shows a progress for monitoring, that never finish.

How do I turn it off?

enter image description here

enter image description here

like image 399
Ilya Gazman Avatar asked Mar 25 '15 18:03

Ilya Gazman


People also ask

Where is the Android device monitor in Android Studio?

To start Device Monitor: From Android Studio, choose Tools > Android Device Monitor or click the Android Device Monitor icon .

What is an Android device monitor?

Android Device Monitor is a stand-alone tool that provides a graphical user interface for several Android application debugging and analysis tools. The Monitor tool does not require installation of a integrated development environment, such as Eclipse, and encapsulates the following tools: DDMS.

What is Device Manager in Android Studio?

The Device Manager is an interface you can launch from Android Studio that helps you create and manage AVDs.

How do I add a monitor to my android?

Start Android Device Monitor You can then link the tool to a connected device by selecting the device from the Devices pane. If you have trouble viewing panes or windows, select Window > Reset Perspective from the menu bar. Note: Each device can be attached to only one debugger process at a time.


1 Answers

So all you need to do is:

Open Tools -> Android -> uncheck "Enable ADB Integration"

enter image description here

NB! If you debug application, AS will enable ADB integration back.

like image 88
Konstantin Loginov Avatar answered Nov 09 '22 06:11

Konstantin Loginov