jkgooch / androidscreencast

Automatically exported from code.google.com/p/androidscreencast
0 stars 0 forks source link

can androidscreencast connect to a android device by wifi? #54

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

My phone can not use the USB interface.
I wonder if the androidscreencast can control the phone through WIFI?

Original issue reported on code.google.com by Janet.W...@technicolor.com on 10 Jun 2010 at 4:57

GoogleCodeExporter commented 8 years ago
you only have to get adb working through wifi, then andriodscreencast should be 
working through wifi also:

quoting 
http://forum.xda-developers.com/showpost.php?s=840e4ea6ed10d887d62dffb9dae207ea&
p=5471503&postcount=4

# detach adbd from usb and tell it to listen to port tcp 2222
packetlss@wopr$ adb tcpip 2222
restarting in TCP mode port: 2222

# tell your local adb command to use ip:port to connect through instead of usb 
(192.168.0.151 is my N1 on Wifi)
packetlss@wopr$ adb connect 192.168.0.151:2222
connected to 192.168.0.151:2222

# connect over ip 
packetlss@wopr$ adb shell
# uname -a
Linux localhost 2.6.29.6-cyanogenmod #3 PREEMPT Wed Jan 27 07:21:12 EST 2010 
armv7l GNU/Linux
# exit

# tell adbd to go back to listen on usb
packetlss@wopr$ adb usb
restarting in USB mode

Original comment by sche...@gmail.com on 30 Jul 2011 at 6:10

GoogleCodeExporter commented 8 years ago
It would be cool for androidscreencast to have a documentation/ help which 
covers this also...

Original comment by sche...@gmail.com on 30 Jul 2011 at 6:12