Android studio debugging stops working (OSx / Samsung Galaxy S5)

After the application starts or debugs successfully, subsequent debugging sessions are not performed. Logcat shows a connection failure message.

Disconnecting and connecting a cable is a workaround, but a list of dead devices is created in the Devices view dead devices

I also sometimes see "adb not responding dialog" adb not responding

Environment:

  • Android Studio Build: 0.5.8, AI-135.1155795, 20140506
  • Android SDK Tools 22.6.3
  • Platform for Android SDK 19.1
  • OS X 10.9.2

This issue also affected an older version of AS.

+7
android android-studio adb macos
source share
3 answers

I use XUbuntu and have the same problem that fixes it for me - it clicks on “Android Device Monitor” and then it stops the unresponsive application and starts the application in Android Studio again. It seems to have restarted adb correctly.

0
source share

If your adb stops responding, there is an easy way to reset adb. You need to go to the folder where your Android sdk file is installed, find the location of "adb", and as soon as you get to the folder, you can run the following command.

adb kill-server adb start-server

0
source share

Update the version of Android Studio, which is fixed on the latest studio version of Android version 1.1

-one
source share

All Articles