How to Pull Watch Face WearOS ADB: If you own a Wear OS-based smartwatch, there’s great news! You can now add more stylish watch faces to enhance your display. By sideloading the Pixel Watch 3 APK, you can get its exclusive watch faces. While this guide focuses on the Galaxy Watch, you can use the same method for other Wear OS devices like the Pixel Watch and Pixel Watch 2.
Google unveiled the Pixel Watch 3 on August 13, and it will soon be available for purchase. But if you’re eager to mimic its look, you can easily install its watch faces. Don’t worry if you’re unsure about the process—I’ll walk you through the steps. This method works for devices like the Galaxy Watch 4, 5, and 6, Pixel Watch 1 and 2, OnePlus Watch, and more.

The new Pixel Watch comes packed with a variety of exciting watch faces, making it no surprise that many users want to try them on their smartwatches. Some of the latest Pixel Watch 3 watch faces include:
- Active
- Adventure
- Analogue Arcs
- Field
- And more!

If you’re a Galaxy Watch user, or even a Pixel Watch or Pixel Watch 2 owner, you can access all these new watch faces through one official app. This should be compatible with most Wear OS smartwatches.
Recently, we shared a guide on how to get the latest Galaxy Watch 7 faces on other smartwatches. If you missed it, be sure to check it out. Now, let’s dive into how you can install the new Pixel Watch 3 faces on your Galaxy Watch.
How to Install Pixel Watch 3 Watch Faces on Galaxy Watch
You can install the watch faces using two methods. It’s easier if you have a PC, but you can also use your smartphone. We’ll cover both methods here.

Download Pixel Watch 3 Watch Faces
First, you need to download the official Google Pixel Watch Faces app. Ensure that the app version is 3.0.119.647124927 or newer. This app is designed for your watch, not your smartphone. You can download it from the link below:

Enable USB Debugging on Your Smartwatch
- Connect your smartwatch to Wi-Fi.
- Go to Settings > About Watch > Software Information.
- Tap on the Software Version (or Build Version) 7 times to enable Developer Options.
- Return to Settings and open Developer Options.
- Enable ADB Debugging and Wi-Fi Debugging.

Install Pixel Watch 3 Watch Faces Using Your Smartphone
Make sure your phone and smartwatch are connected, and that both devices are on the same Wi-Fi network.
- Install Bugjaegar ADB app on your phone from the Play Store.
- Copy the downloaded Pixel Watch 3 watch face APK to your phone, and note its location.
- Pair your smartwatch with your phone. You’ll need the IP address and pairing code for this:
- Go to Wireless Debugging on your smartwatch and tap on Pair New Device. It will provide the IP address and pairing code.
- Open the Bugjaegar app and tap the + Connect icon on the right.
- Tap Pair in the pop-up and enter your IP address, port, and pairing code to pair.
- Once paired, connect ADB by returning to Wireless Debugging on your watch, where you’ll see the IP address and port details.
- Tap the + Connect icon in Bugjaegar again and enter the IP address and port from your watch, then tap Connect.
- In Bugjaegar, go to the tab with the Up Arrow icon, followed by the + icon.
- Choose the watch face APK file and wait for the installation to complete.

Install Pixel Watch 3 Watch Faces Using a PC
If you have a PC, this method will be much quicker, as it streamlines several steps. While I’ll focus on the process for a Windows PC, you can also use a Mac or Linux machine—just note that you’ll need to find the initial commands for those systems.



Steps for Windows PC:
- Download and Extract Platform Tools: Download the platform tools folder and extract it to your PC.
- Prepare the APK: Copy the downloaded Pixel Watch 3 watch face APK to the platform tools folder. Rename the file to something simple, like
1.apk
orpixelwatch.apk
. - Connect Your Smartwatch and PC to the Same Wi-Fi: Make sure both your smartwatch and PC are connected to the same Wi-Fi network.
- Launch the Command Window: Open the Command Prompt (CMD) window in the platform tools folder. To do this, type
CMD
in the address bar of the folder and press Enter. - Enable Developer Options and Pair New Device: On your smartwatch, go to Developer Options > Wireless Debugging. Tap on Pair New Device to get the IP address and pairing code.
- Pair Your Devices: In the CMD window on your PC, type the following command (replacing the IP address and port with the details from your watch):arduinoCopy code
adb pair ipaddress:port
For example:arduinoCopy codeadb pair 192.168.1.6:35567
You’ll be prompted to enter the pairing code shown on your smartwatch. After entering it, your smartwatch will pair with your PC. - Connect to Your Smartwatch: Go back to the Wireless Debugging settings on your watch to see the IP address and port details. Now, enter the following command in the CMD window (again, replacing the IP address and port):arduinoCopy code
adb connect ipaddress:port
Example:arduinoCopy codeadb connect 192.168.1.6:35567
- Install the Watch Face APK: Once connected, enter the following command to install the Pixel Watch 3 watch faces on your smartwatch:arduinoCopy code
adb -s "IP address" install filename.apk
Example:Copy codeadb -s 192.168.1.6:20050 install 1.apk
After the installation is complete, you’ll see a confirmation message in the CMD window. - Apply the New Watch Faces: Now, you can access the newly installed Pixel Watch 3 watch faces and apply them to your smartwatch from the default watch face selection menu.
Frequently Asked Questions
What is ADB and how does it relate to Wear OS?
ADB (Android Debug Bridge) is a command-line tool that allows communication between a computer and an Android device (in this case, a Wear OS smartwatch). It is commonly used to access advanced functions on Wear OS devices, such as pulling watch faces, installing apps, and debugging.
Do I need to enable Developer Options on my Wear OS device to pull a watch face?
Yes, you need to enable Developer Options on your Wear OS device. To do this, go to Settings > About > tap “Build number” several times until Developer Options are unlocked. Once enabled, you can activate USB debugging, which is required for ADB access.
What command should I use to pull a watch face using ADB?
To pull a watch face from your Wear OS device, use the following ADB command in the terminal or command prompt:
bash
Copy code
adb shell cp /data/system/locksettings.db /path/to/your/local/directory
This command copies the locksettings database where the watch face settings might be stored, or you may need a specific file path depending on the watch face installation location.
Can I modify a watch face after pulling it via ADB?
Yes, once you pull a watch face file, you can modify it as needed. You can change its design, layout, or features, but be careful with compatibility issues and ensure you adhere to Wear OS development guidelines if you plan to install the modified face back onto the device.
What should I do if I encounter a “Permission Denied” error while pulling a watch face?
If you encounter a “Permission Denied” error, it typically means you need elevated privileges to access certain files. Ensure that your device is rooted or that you have the correct permissions for the required directories. You may also need to run ADB commands as a superuser (using sudo on Linux/Mac or Administrator privileges on Windows).
conclusion
Pulling a watch face from a Wear OS device using ADB is a powerful way to access and modify watch face files. By enabling Developer Options and USB debugging on your Wear OS smartwatch, you can use ADB commands to interact with the device at a deeper level. Whether you’re looking to back up a watch face, customize its design, or troubleshoot an issue, ADB provides the flexibility needed to manage your device effectively.
However, it’s important to approach this process with caution—modifying system files or watch faces can lead to compatibility issues or even disrupt device functionality. Always ensure you have the necessary permissions and knowledge before making any changes.
With the right setup and understanding of ADB commands, you can easily pull and manipulate watch face files on your Wear OS device, opening up a range of possibilities for customization and personalization.