I am using Android Studio 1.5 and currently working on a project. Whenever I am trying to debug or attach the debugger to the app I am working on to fix bugs, the debugger is NOT able to connect; therefore the app freezes on the android device. Note that it randomly works and connects properly some time to time (like 2 out 10 times). I get this error in the logs:
Error running Android Debugger (8600): Unable to open debugger port (localhost:8600): java.io.IOException "handshake failed - connection prematurally closed" 9:57:00 AM Error running Android Debugger (8600): Unable to open debugger port (localhost:8600): java.io.IOException "handshake failed - connection prematurally closed" 9:57:25 AM Adb connection Error:EOF 9:57:25 AM Connection attempts: 1
How can I fix this issue and be able to easily debug my app ? Thanks in advance.
You can try restarting adb. From Android Studio, click "Terminal" (bottom of screen). At the prompt enter: adb kill-server, then adb start-server. Try debugging again.