Menu

Post image 1
Post image 2
1 / 2
0

ADB Wireless Debugging in Android Development

DEV Community·Rafli Zocky·22 days ago
#ztWrCayz
Reading 0:00
15s threshold
Cover image for ADB Wireless Debugging in Android Development

Rafli Zocky

Ensure your PC and phone are on the same Wi-Fi network or enable a mobile hotspot on your PC and connect your phone to it.

Wireless Debugging

  1. Pairing code
  • Navigate to Settings → Developer Options → Wireless debugging
  • Tap Pair device with pairing code
  • Open your project terminal:
# pair
adb pair your_ip:pairing_port

# connect
adb connect your_ip:device_port

# verify
adb devices

Enter fullscreen mode Exit fullscreen mode

  1. QR code (Android Studio)
  • Run:
adb pair

Enter fullscreen mode Exit fullscreen mode

If it still doesn’t work, check that your ADB version is 1.0.41 or higher, temporarily disable any VPN or mobile hotspot, or fall back to a USB connection.

Need help building your app? I’m available for freelance web & Android development — raflizocky.netlify.app

☕ Support my writing: paypal.me/raflizocky · saweria.co/raflizocky

Read More