You have to have console access to get this to work. First, from the Android console or adb shell, type in these commands:
setprop service.adb.tcp.port 5555Now use the netcfg command to find the IP address on your device. With that IP address, on your host computer you are debugging on, run the command:
stop adbd
start adbd
adb connect <ip address of target board>You should get a message that ADB is connected. You can now debug the device just like it was connected via the USB cable. Pretty slick!
No comments:
Post a Comment