-
Notifications
You must be signed in to change notification settings - Fork 1
Debug WiFi
Josh Stovall edited this page Dec 4, 2020
·
1 revision
We can use adb to debug the Oculus Browser to Google Chrome via WiFi.
Install Android SDK Platform Tools, which includes adb.
Make sure your device appears in the Oculus Developer Hub app.
In terminal, enter this code. It will return a list of connected Android devices.
adb devices
List of devices attached
1PASH9BKZ20035 device
adb shell ip route
192.168.0.0/24 dev wlan0 proto kernel scope link src YOUR.OCULUS.IP
adb tcpip 5555
restarting in TCP mode port: 5555
adb connect YOUR.OCULUS.IP:5555
connected to YOUR.OCULUS.IP:5555
If everything works, you can now unplug 🙂
adb devices
adb shell ip route
adb tcpip 5555
adb connect YOUR.OCULUS.IP:5555
adb disconnect
to disconnect
adb kill-server
to stop the session
See Connecting to ADB for more info.