ADB Commands

ADB connection using wifi over the air.


Step 1: adb devices command to list all devices

adb devices

List of devices attached

ZM23B2JNGL device

Step 2: then run adb tcpip 5555


restarting in TCP mode port: 5555
Step 3 : Then disconnect your USB cable 

Step 4 : find IP address of the device you want to connect from advanced of your wifi section 

Step 4.1 : run adb connect <IP Address > :5555 
adb connect 10.xxx.xxx.xx:5555

connected to 10.xxx.xxx.xx:5555

Step 5 : run adb devices again to verify that your device is connected .

List of devices attached

10.xxx.xxx.xx:5555 device

Now using this you can install/uninstall / check logs over adb connection

Comments

Post a Comment