Scrcpy Wireless: How to Connect Without USB Cable (2026)

How to Use Scrcpy Wirelessly to Mirror Android to PC [2026]

Scrcpy is a free, open-source tool that lets you mirror and fully control your Android phone from a computer — and while most people start out using it with a USB cable, it works just as well entirely over Wi-Fi once it’s set up. No cable tethered to your desk, no third-party account, and no app installed on your phone beyond what’s already built into Android.

This guide walks through the exact steps to connect Scrcpy wirelessly using ADB’s wireless debugging pairing — the same official method built into Android 11 and later — from finding your phone’s IP address to running your first wireless mirroring session.

How to use Scrcpy wirelessly to mirror Android to PC
⚠️ Disclaimer: Scrcpy only mirrors and controls your screen — it doesn’t record, upload, or transmit your data anywhere beyond the local connection between your phone and computer. Make sure to only pair with your own devices on a network you trust.

1 Before You Start

Wireless pairing relies on Android’s built-in Wireless Debugging feature, so make sure the basics below are covered before jumping into the steps.

Requirement Details
Android Version Android 11 or later (required for Wireless Debugging)
Wi-Fi Network Phone and computer must be on the same Wi-Fi network
Scrcpy Free, downloaded from the official GitHub releases page
ADB Included in the Scrcpy download — no separate install needed
⬇️ Download Scrcpy v4.1 Free · Open-source · Official GitHub releases
📡 Step-by-Step Wireless Setup
1
Enable Developer Options & Wireless Debugging
Unlocks the pairing feature used for wireless ADB
📱 On Phone
  1. Open Settings → About Phone.
  2. Find Build Number and tap it several times until you see a message confirming Developer Options are enabled. Tapping Build Number to enable Developer Options on Android

    Tap Build Number repeatedly until the “You are now a developer” message appears.

  3. Go back to Settings → Developer Options.
  4. Find Wireless Debugging and turn it on.
  5. Tap into Wireless Debugging to open its settings screen. Wireless Debugging settings screen on Android

    The Wireless Debugging screen shows your pairing and connection options.

  6. Make sure your phone and computer are on the same Wi-Fi network.
2
Check ADB on Your Computer
Confirms Scrcpy’s bundled ADB is working
💻 On PC
  1. Open Command Prompt (or Terminal) in the folder where Scrcpy is extracted.
  2. Type the following command and press Enter:
adb version

If ADB is working correctly, you’ll see version information printed back — this confirms you’re ready for the next step.

3
Pair Your Phone with Your Computer
One-time pairing using a 6-digit code
📱💻 Both
  1. On your phone, under Wireless Debugging, tap Pair device with pairing code.
  2. Your phone will display an IP address, a pairing port, and a 6-digit pairing code. Wireless Debugging pairing code screen showing IP, port, and 6-digit code

    The pairing screen shows the IP address, pairing port, and the 6-digit code you’ll enter on your PC.

  3. On your computer, type the following, replacing the address with what your phone shows:
adb pair PHONE_IP:PAIRING_PORT

Press Enter, then when Command Prompt asks for the pairing code, type in the 6-digit code shown on your phone and press Enter again. You should see a message confirming the device was successfully paired.

💡
Your IP Address and Port Will Differ

The command above is just an example — always use the exact IP address and pairing port currently shown on your own phone’s screen, since both can change between sessions.

4
Connect Over Wi-Fi
Uses a different port than pairing
📱💻 Both
  1. Go back to the main Wireless Debugging screen on your phone (not the pairing screen). Main Wireless Debugging screen showing IP address and connect port on Android

    The main Wireless Debugging screen shows the IP address and connect port used for adb connect.

  2. Note the IP address and port shown here — this port is different from the pairing port used in Step 3.
  3. On your computer, type the following, using your phone’s actual IP and connect port:
adb connect PHONE_IP:CONNECT_PORT

If the connection succeeds, you’ll see a confirmation like connected to 192.168.1.27:34831. Next, confirm ADB can see your device:

adb devices

Your phone should now appear in the list of connected devices, confirming the wireless connection is active.

5
Launch Scrcpy
Mirror and control your phone from the PC screen
🎉 Final Step

With the wireless connection active, start Scrcpy from the same Command Prompt window:

scrcpy

Your Android phone’s screen should now appear in a window on your computer, fully controllable with your mouse and keyboard — no USB cable required.

If you have multiple devices connected via ADB at the same time, you can target this specific phone directly by including its address with the -s flag:

C:\scrcpy\scrcpy.exe -s 192.168.1.27:34831
💡
You’re Free to Disconnect the Cable

From this point on, you can control your Android phone from your PC entirely over Wi-Fi. Just keep in mind you’ll need to repeat the adb connect step (Step 4) each time you restart your phone or reconnect, since the pairing itself only needs to be done once.

7 Troubleshooting Connection Issues

If the wireless connection isn’t working, run through this checklist:

  • Same network: Double-check your phone and computer are connected to the exact same Wi-Fi network, not a guest network or a different band.
  • Wireless Debugging is on: Confirm the toggle is still enabled — it can turn off after a reboot.
  • Correct IP and port: Make sure you’re using the IP and port currently shown on your phone, not an old one from a previous session — both can change.
  • Re-pair if needed: If adb connect fails outright, go back to Step 3 and re-pair using a fresh pairing code.
❓ FAQs

8 Frequently Asked Questions

Do I need to root my phone to use Scrcpy wirelessly?
No, root access isn’t required. Scrcpy connects through Android’s standard ADB and Wireless Debugging features, both of which work on unrooted, stock Android devices running Android 11 or later.
Do I need to pair my phone every single time?
No, pairing (Step 4) only needs to happen once per computer. After that, you just need to run adb connect with your phone’s current IP and port (Step 5) each time you want to reconnect wirelessly.
Why does the port keep changing on my phone?
Android’s Wireless Debugging assigns a new connect port periodically for security. Always check the current IP and port on the Wireless Debugging screen before running adb connect, rather than reusing an address from a previous session.
Can I use Scrcpy wirelessly on an older Android version?
This exact pairing method requires Android 11 or later, since that’s when Google added Wireless Debugging. Older Android versions can still connect wirelessly to Scrcpy, but through a different, USB-first setup process.
Is Scrcpy free to use?
Yes, Scrcpy is completely free and open source, distributed through its official GitHub releases page with no subscriptions, ads, or premium tiers.

9 Conclusion

Here’s the quick recap of connecting Scrcpy wirelessly:

  • Enable Wireless Debugging under Developer Options
  • Pair once using adb pair IP:PORT and the 6-digit code
  • Connect using adb connect IP:PORT (a different port than pairing)
  • Launch Scrcpy with a simple scrcpy command

Once it’s set up, controlling your Android phone from your PC becomes as simple as opening a terminal and typing adb connect followed by scrcpy — no cable, no extra app installed on your phone, and no ongoing cost.

📱 Ready to Cut the Cable?

Download Scrcpy, follow the six steps above, and you’ll be mirroring your phone wirelessly in a few minutes.

Leave a Reply

Your email address will not be published. Required fields are marked *