How to use wireless ADB on your Android phone or tablet | Harper29
Call Us Free 773-759-7945
user heart cart0
order Free Shipping on Orders Over $100

How to use wireless ADB on your Android phone or tablet

You can wirelessly issue commands through the Android Debug Bridge (ADB), removing the need for compatible cables for your Android device and computer. Wireless ADB works on Windows, macOS, Linux, and the top Chromebooks.

This guide walks you through setting up ADB for wireless commands on all platforms. Your Android device must be working to set up ADB, but you can use ADB to enter Android's recovery mode. We recommend setting up wireless ADB beforehand if you plan to tinker with your Android device's software.

Should you use ADB wirelessly instead of wired?

Using ADB wirelessly does not restrict you from using any ADB features. You can still sideload any app you want, install your monthly OTA update manually, or tweak interface settings on your device. However, the wireless debugging experience may be slightly laggier than in some cases, depending on your home Wi-Fi setup. If you're concerned about the quality of your Wi-Fi connection, use ADB over a wired connection for a reliable signal.

Want to set up and use ADB? Read this

How to use ADB wirelessly on your Android phone

Before you get started with wireless ADB commands, check that you're ready by following these steps:

  1. Connect your computer and Android phone to the same Wi-Fi network.
  2. Update your device to the latest version of Android.
  3. Download the latest version of Android SDK Platform Tools on your computer.
  4. If you use a ChromeOS device, download SDK Platform Tools for Linux and open a Linux terminal on your Chromebook.

When you're ready, follow the steps below to get started.

You don't need to install Android Studio to use the wireless ADB feature. That program is only necessary if you're an app developer.

If you have an Android device running Android 10 or earlier, use the adb tcpip command method. The steps for this method are on the official Android Developers page.

How to enable Developer options on your Android device

You must activate the hidden Developer options before using wireless ADB on your Android smartphone. The steps might be slightly different between Android devices produced by different manufacturers. We show you how to activate developer options on the most popular Android devices.

Enable Developer options on a Google Pixel device

  1. Open the Settings app.
  2. Tap About phone.
  3. Tap Build number.
  4. Tap the Build number option seven times until you see the message "You are now a developer."

Enable Developer options on a OnePlus device

  1. Go to Settings > About Device > Version.

Enable Developer options on a Samsung device

  1. Go to Settings > About Phone > Software Information.
  2. Tap Build number multiple times until you see "You are now in Developer mode."

How to enable wireless debugging on your Android device

Now that you have activated Developer options, you can turn on wireless debugging.

Enable wireless debugging on a Google Pixel device

  1. Go to Settings > System and open Developer options.
  2. Turn on the toggle next to Wireless debugging.
  3. Choose Allow when you see the popup.

Enable wireless debugging on a Samsung device

  1. Go to Settings > Developer options and tap the toggle for Wireless Debugging.
  2. Tap Allow in the popup to activate it.

Enable wireless debugging on a OnePlus device

  1. Go to Settings > Additional Settings and tap Developer options.
  2. Tap the toggle next to Wireless debugging and choose Allow to activate it.

How to use Wireless ADB on your Android device

After activating developer options and wireless debugging, you can use ADB wirelessly on your Android device. We use a Mac to show you how to do this, but the steps are the same on Windows and Linux devices, with one exception for Windows.

The difference is that you don't add "./" before running ADB commands on Windows Command Prompt. For example, run the ./adb devices command on Mac to find the list of devices. On Windows, enter adb devices to run the command.

To use wireless ADB on your Android device, follow these steps:

  1. Open the Wireless Debugging setting.
  2. Tap the Pair device with pairing code option.
  3. You will see an IP address, port number, and a Wi-Fi pairing code.
  4. When using ADB on Mac, open the Terminal app, type cd followed by a space, and drag the Android SDK platform-tools folder to add its path.
    Dragging the platform-tools folder onto the Mac Terminal© Provided by Android Police
  5. Press Enter to open the path in Terminal.
    Opening the platform-tools folder in the Mac Terminal by pressing enter© Provided by Android Police
  6. On Windows, open the Android SDK platform tools folder. Click the address bar, type cmd, and press Enter to open the folder in the command line tool.
    red rectangle outline over cmd in address bar in platform-tools command prompt in Windows© Provided by Android Police
  7. Type the ./adb pair command in the Terminal window. Add a space and type the IP address and port you saw in Step 2. Remove ./ from the command if you use Windows.
    Entering the IP address to link the wireless debugging device to a Mac© Provided by Android Police
  8. Enter the pairing code and press Enter to pair your Android device with your computer.
    Entering the wireless paring code from the wireless debugging feature using a Mac© Provided by Android Police
  9. You will see the successful pairing dialog on your computer and phone, as shown in the screenshots below.
  10. On your Android phone, go to the main Wireless Debugging page. On this page, you will see the IP Address of the Android device. Use this to connect your Android device.
  11. In the Terminal window, use the command ./adb connect, followed by the IP address and port. Press Enter to execute the command.
    Showing the debugging device successfully connecting over the same network on a Mac© Provided by Android Police
  12. You will see a successful connection notification on your Android device and computer.

You have now set up wireless ADB on your Android device and can run any ADB command. To ensure everything works properly, run the ./adb devices for Mac or adb devices command on Windows to check your connected device. If the device is busy or not responding, try the adb kill-server command to stop the service. Then, enter adb devices again to start fresh.

For security reasons, turn off wireless ADB when you aren't using it. Doing this with any wireless feature you aren't using is an excellent practice to keep your device secure.

Wireless ADB gives you more Android freedom

Wireless ADB is the most convenient way to run ADB commands, whether installing an APK file or sideloading a system update. ADB is mainly used for debugging or fixing other problems with your Android device, but you can also use it to mod your device without rooting it using the Shizuku tool.

Leave a comment

Please note, comments must be approved before they are published