I\'m basically trying to do this: How can I connect to Android with ADB over TCP? with the Droid X2.
I have USB Debugging on, and my phone is plugged in via USB. The
After you run setprop service.adb.tcp.port 5555 and restart adb you won't see the device if you run adb devices on the host.
setprop service.adb.tcp.port 5555
adb
adb devices
Instead, you have to run adb connect 10.0.78.33:5555
adb connect 10.0.78.33:5555