Skip to content

USB Debugging over WiFi

Vivek edited this page May 29, 2021 · 1 revision

You can debug the app over WiFi if the PC and mobile device shares the same wireless network. To start debugging over WiFi, follow the steps mentioned below

  • For the first time, Connect the mobile device to PC using USB cable and execute the below commands on command prompt adb tcpip 5555 adb connect <IP_ADDRESS>:5555 To find the ip address of your mobile, go to Settings > About phone > Status > IP addresses and note down the IPv4 address If the device is connected, you will see the output as connected to <IP_ADDRESS>:5555
  • To disconnect the device, execute adb disconnect <IP_ADDRESS>:5555
  • To disconnect all devices, execute adb disconnect

For more information related to ADB, visit https://developer.android.com/studio/command-line/adb

Clone this wiki locally