How to fix the error “Unable to open debugger port

2020-03-01 03:46发布

Error running Android Debugger (8600):
    Unable to open debugger port (localhost:8600):
    java.net.SocketException "Connection reset"

9条回答
走好不送
2楼-- · 2020-03-01 04:18

For me this problem started when i upgraded my Android Studio to new version.

Please go to options menu Build and choose Clean Project.

enter image description here

That is it project started to run again and error was gone.

查看更多
Ridiculous、
3楼-- · 2020-03-01 04:19

If you using WiFi debug:

  1. Exit ANDROID STUDIO
  2. adb kill-server && adb start-server
  3. adb tcpip 5555
  4. adb connect [your wi-fi IP]:5555
  5. Start ANDROID STUDIO
查看更多
太酷不给撩
4楼-- · 2020-03-01 04:21

I solve the problem by checking my localhost.

Making sure 127.0.0.1 localhost.

查看更多
登录 后发表回答