I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I cannot connect directly via USB in the guest or from the host. I installed a couple of different USB over TCP solutions but the connection appears to have issues since the adb monitor reports "devicemonitor failed to start monitoring" repeatedly. I was wondering if there is a way to connect directly from the client on the development machine to the daemon on the device using the network instead of the usb connection or possibly other viable options?
|
feedback
|
|
According to a post on xda-developers, you can enable ADB over WiFi from the device with the commands
And you can disable it and return ADB to listening on USB with
If you have USB access already, it is even easier to switch to using WiFi. From a command line on the computer that has the device connected via USB, issue the commands
To tell the ADB daemon return to listening over USB
There are also several apps on the Android Market that automate this process. | |||||||||||||
feedback
|
|
this is really simple. 1st make sure you are rooted. download a terminal emulator from market. (there are lots that are free) make sure that your android is connected to your wifi and get the wifi ip address. open the terminal program and type:
now go to your computer (assuming that you are using windows) create a shortcut on the desktop for "cmd.exe" (without the quotations). right click on the cmd shortcut and choose "Run as Administrator" change to your android-sdk-windows\tools folder type:
adb should now say that you are connected. note: if you are too fast to give the connect command it may fail. so try at least 2 times 5 seconds apart before you say this doesn't work. | ||||
|
feedback
|
|
As Brian said:
It worked, but if you have no USB cable you are not able to do this:
One solution is on the Market. adbWireless, it will set your phone | |||
|
feedback
|
|
I know this is old, but I wanted to add my 2 cents-- I needed to get both USB and TCPIP working for adb (don't ask) so I did the following (using directions others have posted from xda-developers) Using
| ||||
|
feedback
|
|
from
Thats a command line option by the way. You should try connecting the phone to your wifi, and then get its IP from your router, its not going to work on the cell network The port is 5554 | ||||
feedback
|
Weird, but this only works for me if I have the USB cable connected, then I can unplug the usb and go for it with everything else adb. and the same when returning to usb,
will only work if usb is connected. It doesn't matter if I issue the
or
then stop & start adbd, I still need the usb cable in or it doesn't work. So, if my ADB over usb wasn't working, I bet I wouldn't be able to enable ADB over WiFi either. | |||
|
feedback
|
|
You can also use ssh local port forwarding. But it still involves a usb cable. Connect your phone using USB to a computer (host) with an sshd running. On a remote(guest) pc start an ssh client capable of portforwarding/tunneling. example: plink -L 5037:localhost:5037 I use this construction to connect my device to a virtual machine. Eltima usb to ethernet wasn't stable enough (timeouts during debug) SSH tunneling works for free and more reliable. | |||
|
feedback
|
|
I do not know how to connect the device without any USB connection at all, but if you manage to connect it maybe at another computer you can switch the adbd to TCP mode by issuing
from a terminal and connect to your device over wifi from any PC on the network by:
Maybe it is also possible to switch to TCP mode from a terminal on the device. | |||
|
feedback
|
|
old thread i know. i did get this working. did not use any usb cable. app adb wireless. run it. that sets ip and port then in dos cd C:\Program Files\Android\android-sdk\platform-tools adb connect "192.168.2.22:8000 "enter" connected. | |||
|
feedback
|
|
Use the adbwireless app to enable the phone, then use adb connect from the Windows machine to talk to it. The adbwireless app on the phone tells you how to connect to it, giving the IP address and everything. The much less fun alternative is to connect via USB, tell the phone to use TCPIP via adb tcpip 5555, then disconnect USB, then use adb connect. This is much harder because this way you have to figure out the IP address of the phone yourself (adbwireless tells you the IP), you have to connect via USB, and you have to run adb tcpip (adbwireless takes care of that too). So: install adbwireless on your phone. Use it. It is possible, I do it routinely on Linux and on Windows. | |||
|
feedback
|
|
On my system it went like this: On my Android device in my Linux shell, a simple "ifconfig" did not give me my IP address. I had to type: ifconfig eth0 -or- netcfg to get my IP address. (I knew eth0 was configured because I saw it in my dmesg.) Then I did the : setprop service.adb.tcp.port -1 stop adbd start adbd Then on my Win7 box (the one running Eclipse 3.7.1). I opened a command prompt to \android-sdk\platform-tools> without running as admin. Then I did a adb connect 12.345.678.90 I never put a port. If I did a adb tcpip 5555 it said it couldn't find the device then nothing appeared in my "adb devices" list. I.e. it only works if I DON'T do the tcpip command above. I can do an "adb shell" and mess with my Android Device. But my Android Device does not appear in my Run->Run Configurations->Target tab right now. On the other hand, if I keep the Target Tab set to automatic. Then when I run my app via Run->Run it does run on my Android device even though my Android device is not even listed as one of my targets. | ||||
|
feedback
|
|
I ended up getting the Eltima USB to Ethernet software working after finally giving up on the possibility of a direct to device connection over TCP. I have pretty much decided that it is not possible to connect to a device across the network only an emulator. If anyone finds out differently please update this post. thanks | |||
|
feedback
|