Guest User

Untitled

a guest
Dec 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ADB over WiFi:
  2. 1. Connect device via USB and make sure debugging is working, then run:
adb tcpip 5555
adb connect <DEVICE_IP_ADDRESS>:5555
  3. 2. Disconnect USB and proceed with wireless debugging.
  4. 3. When you're done and want to switch back to USB debugging, run:
adb -s <DEVICE_IP_ADDRESS>:5555
  5. To find the IP address of your device, go to Settings > Wi-Fi > Advanced > IP Address on your device or run adb shell netcfg (oder ifconfig statt netcfg).
  6.  
  7. # CLI for device(s) list.
  8. adb devices
  9.  
  10. # Connect over TCP-IP
  11. adb tcpip 5555
  12.  
  13. # CLI to find IP address
  14. adb shell ip addr show wlan0
  15.  
  16. # to connect over Wi-Fi
  17. adb connect <DEVICE_IP_ADDRESS>:5555
Add Comment
Please, Sign In to add comment