Tutorial

How to Set Up Wireless ADB on Windows (2026 Guide)

By Andora Team Published: March 7, 2026 Updated: March 12, 2026 Reading time: 6 minutes

Tired of connecting your Android device with a USB cable every time you need to use ADB? Wireless ADB lets you connect to your device over WiFi, making development and debugging much more convenient.

This guide covers two methods: the traditional command-line approach (works on all Android versions) and the easier GUI approach using Andora (recommended for Android 11+).

Prerequisites

Method 1: Traditional Command-Line (All Android Versions)

This method works on Android 5.0 and above. You'll need a USB cable for the initial setup.

Step 1: Enable USB Debugging

  1. Go to Settings > About Phone
  2. Tap Build Number 7 times to enable Developer Options
  3. Go back to Settings > Developer Options
  4. Enable USB Debugging

Step 2: Connect via USB and Enable TCP/IP Mode

  1. Connect your device via USB cable
  2. Open Command Prompt or PowerShell
  3. Run the following command:
adb tcpip 5555

You should see: restarting in TCP mode port: 5555

Step 3: Find Your Device's IP Address

On your Android device:

  1. Go to Settings > WiFi
  2. Tap on your connected network
  3. Find the IP address (usually something like 192.168.1.xxx)

Or use ADB to find it:

adb shell ip route | awk '{print $9}'

Step 4: Connect Wirelessly

  1. Disconnect the USB cable
  2. Run the connect command with your device's IP:
adb connect 192.168.1.100:5555

Replace 192.168.1.100 with your device's actual IP address.

You should see: connected to 192.168.1.100:5555

Step 5: Verify Connection

adb devices

Your device should appear with the IP address instead of serial number.

Tip: Make it Persistent

The TCP/IP mode resets when you reboot your device. You'll need to repeat steps 2-4 after each reboot, or use a third-party app to make it persistent.

Method 2: Wireless Debugging (Android 11+)

Android 11 introduced native Wireless Debugging with pairing codes. This method doesn't require a USB cable at all!

Step 1: Enable Wireless Debugging

  1. Go to Settings > Developer Options
  2. Enable Wireless debugging
  3. Tap Wireless debugging to open settings

Step 2: Pair with Pairing Code

  1. Tap Pair device with pairing code
  2. Note the IP address, port, and 6-digit pairing code
  3. On your PC, run:
adb pair 192.168.1.100:37123
# Enter the 6-digit pairing code when prompted

Step 3: Connect

After pairing, connect using the IP and port shown under "IP address & Port" (not the pairing port):

adb connect 192.168.1.100:43567

Note: Two Different Ports

Android 11+ uses two ports: one for pairing (one-time) and one for connecting. Make sure you use the correct port for each command.

Method 3: Easy Setup with Andora Pro

If command-line setup seems complicated, Andora Pro simplifies wireless ADB with a graphical interface:

Andora Pro Wireless Setup

  1. Open Andora and go to wireless connection settings
  2. Enable Wireless Debugging on your Android device
  3. Enter the IP address and port shown on your device
  4. Click Connect - Andora handles the rest

Andora provides a simple interface for entering connection details. No need to remember command-line syntax.

Skip the Command Line

Andora Pro makes wireless ADB setup simple with a visual interface.

Download Free Get Pro - $12

Troubleshooting Common Issues

"unable to connect" or "connection refused"

"device offline" after connecting

Connection drops frequently

Slow file transfers

Security Considerations

Important: Wireless ADB Security

Wireless ADB is less secure than USB. Anyone on the same network could potentially connect to your device. Only use it on trusted networks (home/office), and disable it when not in use.

Best practices:

Frequently Asked Questions

Can I use ADB without USB cable?

Yes! On Android 11+, you can use Wireless Debugging with pairing codes - no USB needed at all. On older versions, you need USB for the initial adb tcpip 5555 command, then you can disconnect and use WiFi.

Is wireless ADB slower than USB?

For large file transfers, yes. But for most tasks like installing APKs, running commands, and screen mirroring, the difference is negligible on a good WiFi connection.

Does wireless ADB work on Windows 10?

Yes, wireless ADB works on both Windows 10 and Windows 11. The process is identical.

Do I need to set up wireless ADB every time?

On older Android versions, yes - TCP/IP mode resets on reboot. On Android 11+, your PC stays paired, but you may need to reconnect if the IP changes.

Can I use wireless ADB for screen mirroring?

Yes! Once connected wirelessly, all ADB features work including screen mirroring with tools like scrcpy or Andora.

Once connected wirelessly, you can install APKs from your Windows PC without touching a cable.

Conclusion

Wireless ADB is a game-changer for Android development and power users. No more fumbling with cables or wearing out your USB port.

For command-line users, the traditional TCP/IP method works on all Android versions. For Android 11+ users, native Wireless Debugging is more secure and easier.

If you want the easiest experience, Andora Pro provides a simple visual interface for wireless connections.

Ready for Wireless Android Management?

Try Andora for easy wireless ADB, APK installation, and more.

Download Free Get Pro - $12