1、#adb devices
List of devices attached
emulator-5554 offline
emulator-5556 offline
2、常规解决
adb kill-server
再看adb devices
adb start-server
3、杀模拟器进程
#adb -s emulator-5554 emu kill
error: could not connect to TCP port 5554
再去查看设备列表,模拟器仍然存在。
根据刚才命令中的报错信息,adb这时候是要和端口5554进行通信,但是却不能正常通信。
通过lsof命令把5554,5555,5556端口都看了一遍
来源:CSDN
作者:Samantha_LY
链接:https://blog.csdn.net/weixin_41864235/article/details/103244425