Noticias

¡RECUERDA QUE SI ERES UN NUEVO USUARIO, DEBES PRESENTARTE PARA PODER PUBLICAR MENSAJES! | TENEMOS CANAL OFICIAL DE TELEGRAM: t.me/unity3dspain

Unity remote por wi-fi

Iniciado por maya111, Junio 16, 2015, 07:00:56 PM

Tema anterior - Siguiente tema
Hola foro, se que que ya existe una conexión con unity remote por cable usb  : existe por medio de wi-fi.
 
Ayuda??!!!! 

http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp" rel="external nofollow">http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp
 
From your device, if it is rooted
According to http://forum.xda-developers.com/showthread.php?t=623828&page=3" rel="external nofollow">a post on xda-developers, you can enable ADB over Wi-Fi from the device with the commands:
su

setprop service.adb.tcp.port 5555
stop adbd

start adbd
And you can disable it and return ADB to listening on USB with
setprop service.adb.tcp.port -1
stop adbd

start adbd
From a computer, if you have USB access already
It is even easier to switch to using Wi-Fi, if you already have USB. From a command line on the computer that has the device connected via USB, issue the commands
adb tcpip 5555
adb connect 192.168.0.101:5555
Be sure to replace 192.168.0.101 with the IP address that is actually assigned to your device.
You can find the IP address of a tablet in two ways:
Manual IP Discovery:
Go into Android's WiFi settings, click the menu button in the action bar (the vertical ellipsis), hitAdvanced and see the IP address at the bottom of the screen.
Use ADB to discover IP:
Execute the following command via adb:
adb shell ip -f inet addr show wlan0
To tell the ADB daemon return to listening over USB
adb usb
Apps to automate the process
There are also several apps on Google Play that automate this process. A quick search suggestshttps://play.google.com/store/apps/details?id=siir.es.adbWireless&hl=en" rel="external nofollow">adbWireless, https://play.google.com/store/apps/details?id=com.ttxapps.wifiadb&hl=en" rel="external nofollow">WiFi ADB and https://play.google.com/store/apps/details?id=com.ryosoftware.adbw&hl=en" rel="external nofollow">ADB WiFi. All of these require root access, but adbWireless requires fewer permissions.
 
Con esa información tenes mas que seguro la conexión. 

Etiquetas: