Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I thought there was a way to test your applications in development over WiFi, is this accurate? I'd love to be able to untether my phone and develop wirelessly.

share|improve this question
This may very well do the trick: ADB over WiFi – levis501 Feb 4 '11 at 3:14

3 Answers

up vote 22 down vote accepted

The adb utility does have the ability to connect to a device over TCP/IP. However, adbd is not normally listening for TCP connections.

If you want to get it running, you need an engineering device (in other words, you need root). Then follow the directions in this post:

How can I connect to Android with ADB over TCP?

Since this only works on eng devices, it's not officially supported. Use at your own risk, expect bugs, etc.

share|improve this answer
3  
No cause for alarm, I'm running a Nexus One and I'm ready to get my hands dirty :) – TK Kocheran Feb 4 '11 at 23:12
4  
... now available without root ... – Richard Le Mesurier Oct 22 '12 at 14:32
is there a way to make deploy faster? I can't understand why it is so slow... – agamov Apr 24 at 8:08

See here: http://forum.xda-developers.com/showpost.php?p=7594419&postcount=9

  1. Connect tablet via USB and make sure debugging is working.
  2. adb tcpip 5555
  3. adb connect 10.0.0.2:5555
    (replace with desired address)
  4. Disconnect USB and proceed with wireless debugging.
  5. adb usb to switch back when done.

No root required!

share|improve this answer
2  
this is the best solution man!!!! outstanding !!! just awesome with out root!!! – BlaShadow Dec 29 '12 at 5:16
Great answer !!! – Dani Jan 5 at 23:25
5  
This doesn't work for me without root on an HTC Desire S (Android 2.3.5) but it does on a Nexus 7 (Android 4.2.1) – nickgrim Feb 12 at 10:05
A god amongst mortals – Aiden Strydom Mar 12 at 15:57
Works on Samsung Note 2, but installing the app is much slower (about 30 secs instead of 3) than using USB. But the advantage is you can charge the tablet even when you are debugging... – Hugo Logmans May 28 at 8:23
show 1 more comment
  • Disconnect device from usb then tell it to listen on 4455

    adb tcpip 4455

restarting in TCP mode port: 4455

  • connect to the device using a specified ip:port. my device is using wifi

    adb connect 192.168.1.103:4455

connected to 192.168.1.103:4455

  • now do normal adb commands over tcp like

    adb shell

  • when your done, you can put it back in USB mode adb usb restarting in USB mode

share|improve this answer
What is the purpose or addition of this answer, when posting this one year after a perfect answer has been given by usethe4ce? – Hugo Logmans May 28 at 8:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.