Ilya Gazman
Ilya Gazman

Reputation: 32226

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

Upvotes: 10

Views: 6685

Answers (1)

Konstantin Loginov
Konstantin Loginov

Reputation: 16000

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.

Upvotes: 3

Related Questions