Android wear Watch face installs but not shown in faces list

1.9k Views Asked by At

I create new watch face for android wear using Android Studio. It runs in emulator. I generate signed APK and installs it manually in my phone with connected smart watch (Sony SW3). It installs successfully but it does not shown in face part of Android Wear application. also in smart watch face settings

1

There are 1 best solutions below

0
On

When you release your app on the Play Store, the wear apk is bundled in the phone apk and is automatically sent and installed on the wearables, but on debug builds, only the handset apk is deployed to the device. You need to also install the wear apk on the wearable.

If your watch has USB support (LG G Watch, Huawei Watch, Asus Zenwatch 2...), you can plug it just like any handset, enable adb debugging and let's press the run button in Android Studio.

If your watch doesn't have USB support (Moto 360 and other induction only charging), you need to enable Bluetooth debugging (slower than through USB though). You can learn more about all of this on the official Android Developers website.