Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 539 Bytes

adb.md

File metadata and controls

39 lines (29 loc) · 539 Bytes
title
Android Debug Bridge (ADB)

Wireless debugging

# 0. Add adb's path to Environment Variables or something similar

# 1. If needed, plug the device and run
  adb tcpip <port>

# 2. Connect
  adb connect <device-ip>
  OR
  adb connect <device-ip>:<port>

# 3. Disconnect
  adb disconnect <device-ip>
  OR
  adb disconnect <device-ip>:<port>

USB debugging

# USB mode
  adb -s <device-ip>:<port> usb

Extra

# List devices
  adb devices

# Shutdown device
  adb shell reboot -p