Connect a device over network
Requirement
Ensure both your PC and Android device are connected to the same Wi-Fi network before attempting ADB over TCP.
🔍 Step 1: Get Device IP Address
Option 1: On device
- Go to Settings > Network & Internet
- Tap the connected Wi-Fi
- Note the IP address
Option 2: Via USB
adb shell
adb ifconfig
🔗 Step 2: Connect via Network
adb connect 192.168.0.104:5555
adb shell
caution
You must run adb tcpip 5555 over a USB connection before using ADB over Wi-Fi.
🔁 Step 3: Restart TCP Port
adb tcpip 5555
adb connect 192.168.0.104:5555
📱 Multiple Devices
adb devices
adb -s 192.168.0.104:5555 shell