Wear OS smartwatches are powerful micro-computers operating on a modified version of Android. Just like their smartphone counterparts, Google Pixel Watches, Samsung Galaxy Watches, and other Wear OS devices have a hidden control panel called Developer Options. Under normal circumstances, these settings are hidden to prevent users from accidentally changing settings that could cause system instability. However, if you are looking to side-load apps, customize system transitions, track performance metrics, or debug a custom app via Android Debug Bridge (ADB), unlocking this menu is your first step.

In this comprehensive guide, we will walk you through how to enable Developer Options, set up ADB debugging, and configure wireless/Wi-Fi debugging on Wear OS devices running Wear OS 3, Wear OS 4, and the latest Wear OS 5 releases.

Wear OS Settings Screen

Part 1: How to Enable Developer Options on Wear OS

Unlocking the developer menu follows a classic Android mechanism: tapping a specific info block multiple times. The menu structure varies slightly depending on whether you own a Samsung Galaxy Watch running One UI Watch or a Google Pixel Watch running stock Wear OS, but the core steps remain identical.

  1. Press the physical power button or swipe down from the home screen to open the app tray or Quick Settings, and tap the Settings (gear) icon.
  2. Scroll to the very bottom of the Settings menu and tap System (or About Watch on Samsung Galaxy Watches).
  3. If you tapped About Watch, you will need to tap Software info next. If you tapped System, proceed to the next step.
  4. Find the entry labeled Build number (or Software version). Tap this entry exactly seven (7) times in rapid succession.
  5. You will see a countdown toast notification saying "You are now X steps away from being a developer." Keep tapping until a final message confirms: "Developer mode has been turned on" or "You are now a developer!"

To verify it works, press the back button to return to the main Settings screen. Scroll down to the bottom, and you will notice a brand new menu entry: Developer options, sitting right below the System and About Watch items.

Part 2: Configuring ADB and Wi-Fi Debugging

Because most smartwatches do not have physical USB ports—or use charging cradles that only support power transfer—the primary method for connecting your watch to a computer is wireless debugging. Here is how to configure it:

Network Requirement

For wireless debugging to work, your Wear OS smartwatch and your computer must be connected to the exact same local network (SSID). Make sure your PC isn't on a guest network or VPN that blocks local client-to-client communication.

Steps to Enable Wireless Debugging:

  1. Navigate to Settings > Developer options.
  2. Scroll down and toggle the switch next to ADB debugging. Confirm the prompt on your screen to enable it.
  3. Scroll down further and tap Wireless debugging. (On older Wear OS versions, this may be labeled as Debug over Wi-Fi).
  4. Toggle the Wireless debugging switch to the "On" position.
  5. Wait a moment for the device to connect to your Wi-Fi network and fetch its IP address. Once connected, you will see an IP address and port number displayed on the screen (e.g., 192.168.1.15:5555). Note this down.

Part 3: Connecting via ADB on Your Computer

Now that your watch is broadcasting a debugging port, you can connect your computer to the watch using the standard Android SDK platform tools (ADB).

Open a command prompt, terminal, or PowerShell window on your computer and run the following commands:

For Wear OS 4 and Wear OS 5 (Requires Pairing):

Modern Wear OS systems use secure wireless pairing. Under the "Wireless debugging" settings on your watch, tap Pair new device. This will display a pairing code, an IP address, and a port. Run the following command on your computer:

adb pair [IP_ADDRESS]:[PAIRING_PORT]

Example: adb pair 192.168.1.15:43215

Enter the 6-digit pairing code displayed on your watch screen when prompted. Once paired, run the connection command using the primary IP address and port shown on the main Wireless Debugging screen:

adb connect [IP_ADDRESS]:[CONNECTION_PORT]

Example: adb connect 192.168.1.15:5555

For Wear OS 3 and Older (No Pairing Code Required):

If you are on an older system that does not require pairing, you can connect directly:

adb connect [IP_ADDRESS]:5555

Look at your watch display; you will receive a prompt asking "Allow debugging?". Check the box for "Always allow from this computer" and tap the checkmark to authorize the connection.

OS Version Debugging Connection Mode Security Level
Wear OS 3 and Below Direct IP Connect (Port 5555) Basic prompt authorization
Wear OS 4 / 5 (One UI 5 / 6) Secure ADB Pairing (Dynamic Port) 6-digit pairing PIN + encryption

Pro Tips for Using Developer Options

  • Speed Up System Animations: If your watch feels slightly lagged, scroll down in Developer Options to the drawing section. Change Window animation scale, Transition animation scale, and Animator duration scale from 1.0x to 0.5x (or off). Your watch will instantly feel much snappier.
  • Turn Debugging Off After Use: Keeping ADB debugging and Wi-Fi debugging turned on causes significant battery drain because the watch must keep the Wi-Fi card active and run listener scripts. Remember to toggle both features off in Developer Options as soon as you finish your testing or app side-loading.

Unlocking Developer Options gives you full control over your Wear OS smartwatch. Whether you want to test custom APKs, tweak animation profiles, or monitor memory consumption, you now have the tools to do it safely and efficiently.