Android Studio can't connect to debug devices. I use windows
Connecting to the target VM, address: 'localhost:8600', transport: 'socket'
I think that there is process occupy the port "8600"
When I executenetstat -ano|findstr 8600
in CMD, I find this
TCP 127.0.0.1:8600 0.0.0.0 LISTENING 1948
the process PID is 1948
but when I executetaskkill /f /pid 1948
to kill the process by it's PID,
it return me that no process's pid is 1948
I can't debug in eclipse either, the port 8601 is occupied too;
someone know how to solve that?