ADB not responding. You can wait more, or kill “adb.exe” … windows 8

后端 未结 18 1401
灰色年华
灰色年华 2021-02-05 05:02

When I try to test my Android application with an android emulator as always I now suddenly get an error message. I\'m working with Windows 8. So far I tried the following thing

18条回答
  •  花落未央
    2021-02-05 05:13

    I have the same problems. Verify port 5037 is free and ports 5555 to 5585 are available and never used by another process.

    "ADB server sets up connections to all running emulator/device instances. It locates emulator/device instances by scanning odd-numbered ports in the range 5555 to 5585"

    FROM: http://developer.android.com/tools/help/adb.html

    To find out which process is listening on a port on Windows yo can use:

    C:> netstat -an -o

    FROM: How can you find out which process is listening on a port on Windows?

提交回复
热议问题