美文网首页react native
adb devices 出现emulator-5554

adb devices 出现emulator-5554

作者: xyf_tc | 来源:发表于2017-03-15 14:47 被阅读0次

    使用adb调试时,如果出现以下情况,可能是其他应用调用adb.exe导致的。

    adb devices
    emulator-5554   device
    emulator-5582   host
    emulator-5580   host
    emulator-5584   host
    

    其中5554,5582为端口号,可以通过netstat指令找出当前的进程pid与端口的对应关系。

    netstat -ano > port.txt
    

    然后在设备管理器中根据pid结束该进程就可以了。(查看-选择列 可以选择展示PID)

    ps:最简单的方法,进程管理器中找到adb.exe,直接结束即可

    相关文章

      网友评论

        本文标题:adb devices 出现emulator-5554

        本文链接:https://www.haomeiwen.com/subject/pvblnttx.html