I have two device from which one supports adb over usb and another supports adb over ethernet(tcp) as it doesn't have wifi I need to connect it using ethernet for internet access. Whenever I need to switch between the two devices I need to restart the PC to connect with adb successfully which is quite irritating. I tried to switch between usb to tcp but failed so the solution currently I am having is restart the PC everytime. So, here I am looking for a better solution which will save me from restart my PC for switching between usb to tcp or vice-versa mode.
Now, the problem I am facing swiching between usb to tcp is as below
C:\Users\plalit>adb tcpip 5555
restarting in TCP mode port: 5555
C:\Users\plalit>adb connect 192.168.1.137
not implement
C:\Users\plalit>adb connect 192.168.1.137
not implement
Also, I tried adding port number
C:\Users\plalit>adb connect 192.168.1.137:5555
not implement
As you can see it say "not implement", also if I try to kill adb and restart it then it give me a message as below
C:\Users\plalit>adb kill-server
* server not running *
So, I am able to connect the device via usb(one device) but not able to connect another device via tcp for that I need to restart my PC.
Ways I had already tried,
- Restarting eclipse
- Killing adb.exe from Task Manager(but there is not process with adb.exe)
- Restarting adb from eclipse DDMS
Does anyone have a solution for this or has anyone faced this kind of issue/problem, anyways to resolved it.