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?
Manual ProcessFrom Your Device, if it is RootedAccording 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
From a Computer, if You Have USB Access AlreadyIt is even easier to switch to using WiFi, if you already have USB access. From a command line on the computer that has the device connected via USB, issue the commands
Be sure to replace To tell the ADB daemon return to listening over USB
Apps to Automate the ProcessThere are also several apps on Google Play that automate this process, a quick search suggests adbWireless, WiFi ADB and ADB WiFi. All of these require root access, but adbWireless requires fewer permissions. |
|||||||||||||||||||
|
|
This is really simple. First 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. |
|||||
|
|
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
|
||||
|
|
|
As Brian said:
It works.You just need to access the android shell and type those commands... One other (easier) solution is on the Market: adbWireless, it will automatically set your phone. Root is required! for both... |
|||||
|
|
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 |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
To switch between TCP and USB modes with just one command, you can add this to
And now you can use property |
|||||
|
|
|
To connect your tablet using TCP port make sure your system and device is connected to same network 1.open console cmd.exe 2.type adb tcpip 5555 3.go to system->dovelopment option->usb debugging unchek it for TCPIP connection 4.type adb connect 192.168.1.2 this is your device ipaddress 5.connected to 192.168.1.2 if you get message error: device not found connect a usb device to system then follow same procedure |
|||
|
|
|
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. |
|||
|
|
|
I find the other answers confusing. Far simpler to use adbWireless: http://ppareit.github.com/AdbConnect/ Simply install an app on your phone to toggle debugging over wifi, install an eclipse plug-in and you're done. |
||||
|
|
Assume you saved adb path into your windows environment path
Now in command prompt you should see the result like: connected to xxx.xxx.xxx.xxx:5555 |
||||
|
|
|
I put together a batch file for automatic enabling and connecting ADB via TCP, to a device connected via USB. With it you don't have to put in the IP manually.
|
|||
|
|
|
I wrote an app to assist with this, first install the app on your Android device from here Ensure your phone and pc is connected to the same network, open the app, click ADB over TCP, select TCP, type a port and click set. Then using cmd (Command Prompt) on Windows, cd to your directory containing the adb exe. Once there, type: 'adb connect :' and you're ready to go. |
|||
|
|
|
I did get this working. Didn't use any usb cable.
Connected. |
||||
|
|
|
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 |
|||
|
|