Wireless unity remote[root only]

  1. make sure your pc and android is on same wifi connection.

  2. start adb server from your phone…
    download any wireless adb app from playstore…here is what I am using
    WiFi ADB - Debug Over Air

or do it manually http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp

  1. on your computer start cmd and run:
    adb connect 192.168.1.100:5555

Be sure to replace 192.168.1.100 with the IP address that is actually assigned to your device.

check if it is connected by :
adb devices

  1. start unity or restart if it is already running and hit play…

  2. tadaa…:o

2 Likes

Nice + Working

http://startapp.com/rfang3x Register AT Startapp

Does it work like unity remote? No lagging, no loss of quality? Can i use it to run a game from my PC to my phone?

i made a scrip for this purpose
you wont need you to root your device

Please ceep the (C) in there if u are usin this in any videos

but when u start it up you need to have the usb conneted

when it says that you can disconnet the usb then u can disconnet usb

here is the code

ECHO OFF
cls
TITLE Prepairing... ©Ozmo Mac
echo please plug in the usb then hit any key to continew...
pause >nul
echo .
IF NOT EXIST "IP.txt" goto ipset
echo .
set /p IP=<IP.txt
goto main

:ipset
echo .
echo first time setup.
set /p IP=Enter The IP: %=%
echo %IP%>> IP.txt
echo .
goto main

:main
adb kill-server
adb tcpip 5555
TITLE CONNETING....©Ozmo Mac
echo .
adb connect %IP%:5555
TITLE Connected ©Ozmo Mac
echo .
adb devices
echo.
echo You can disconnet the usb now
echo Hit any key to disconnet..
pause >nul
adb kill-server
adb -s %IP%:5555
cls
TITLE Disconnetted ©Ozmo Mac
echo Hit eny key to exit...
pause >nul
exit

if the ip chainges there is a txt file in the same folder that you can edit

its quite simple bat scrip

but it speeds up things a lot

remember to but the scrip in to the folder were the android sdk is

sorry if the enlish is a bit of im not a native speaker

Yes

Well therere is some image lag but no input lag and it also depends on your network

The image lag can be removed all most all by lowering the image quality

And you can run game/projets from your computer in unity editor but not in my knowledge how to run other games in there

I was able to get this to work without rooted device.

Yeah, now you can use adb wirelessly without root too.
For those of you who want to try it out, take a look at this:
http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp
Works fine on my device.

1 Like