My adb is down, no matter I am using ADT or Android Studio.
And according to the second answer of this SO question, I did:
I type:
adb nodaemon server
Output:
cannot bind 'tcp:5037'
Then
netstat -ano | findstr 5037
I did find a pid of 7416 who listen in
127.0.0.1:5037
I use
taskkill /pid 7416 -f
to kill it.I type
netstat -ano | findstr 5037
again, I found another pid listens at127.0.0.1:5037
again!
I guess they are the same, but I have no idea who it is.
Can I simply have a easy way to release this port or change the adb port to another one?