9
2019
Deploy to Android device with wireless connection
Using windows Command Prompt:
// check if your device is presentadb devices
// get device ip address (see inet row) adb shell ip addr show wlan0
// enable tcpip and portadb tcpip 5555
// connect device (use your device ip address)adb connect 192.168.1.90:5555
Now you can remove usb cable, and deploy through wifi.
(This works with Oculus Quest and other android based vr devices)
// can check if your wireless device is connectedadb devices
// logcat works tooadb logcat -s Unity ActivityManager PackageManager dalvikvm DEBUG -v color

Related Posts
2 Comments + Add Comment
Leave a comment
Recent posts
- Convert LAS/LAZ/PLY pointclouds to GLTF (GLB) Point Meshes (standalone converter)
- Detect SRP (URP or HDRP) with Assembly Definition Version Defines
- [LudumDare57] Theme: Depths
- MotionVector Effect: Object “disappears” when paused
- [GreaseMonkey] Unity Forum Fixer
- UnityHub: Make Hub application background Translucent
- Customize SpriteShapeRenderer quality (but has issues)
- Editor tool: Copy selected gameobject’s names into clipboard as rows (for Excel)
- Editor tool: Replace string in selected gameobject’s names
- UnityHub: Enable built-in Login Dialog (no more browser login/logout issues!)
- Use TikTok-TTS in Unity (with WebRequest)
- Create Scene Thumbnail Image using OnSceneSaved & OnPreviewGUI
Recent Comments
- on Vector3 maths for dummies!
- on UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- on Using RenderDoc with Unity (graphics debugger)
- on UI Scroll View automatic Content height
- on [Asset Store] Point Cloud Viewer & Tools
- on [Asset Store] Point Cloud Viewer & Tools
- on Vector3 maths for dummies!
- on UnityHub: Make Hub application background Translucent
An article by












Very useful! Thanks for posting this tip.
Thank you, works perfectly.