-
Notifications
You must be signed in to change notification settings - Fork 10
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 5555adb connect <IP_ADDRESS>:5555To find the ip address of your mobile, go toSettings > About phone > Status > IP addressesand 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