doc/articles/features/android-wear.md
Uno Platform supports Wear OS as an opt-in for the existing Android head, enabling a single APK that can target both phones and watches.
UnoFeatures (recommended)For projects using the Uno.Sdk, add the AndroidWear feature to your project's <UnoFeatures> property:
<UnoFeatures>$(UnoFeatures);AndroidWear</UnoFeatures>
This automatically adds references to the Xamarin.AndroidX.Wear and Xamarin.AndroidX.Wear.Tiles packages. New projects created from the Uno Platform templates with the Wear OS option enabled will also have the required <uses-feature> manifest declaration stamped automatically.
When the AndroidWear feature is enabled, SupportedOSPlatformVersion (Android minSdkVersion) defaults to 26.0 instead of 21.0, unless you set it explicitly — the androidx.wear.protolayout libraries referenced by Xamarin.AndroidX.Wear.Tiles require API 26 or higher.
Additionally, the template stamps the following declaration into your AndroidManifest.xml:
<uses-feature android:name="android.hardware.type.watch" android:required="false" />
required="false" means the same APK can also install on phones — Wear-specific code paths simply remain dormant on non-watch devices.
Watches typically have very small displays — round, square, or chin-cut variants. When designing UI for Wear OS, prefer:
ScrollViewer and large touch targets.WearableNavigationDrawer and WearableActionDrawer from Xamarin.AndroidX.Wear for navigation that adapts to round bezels.Xamarin.AndroidX.Wear.Tiles package.Production-grade Wear apps are typically distributed as standalone Wear-only APKs rather than as a dual-purpose phone+watch APK. The AndroidWear opt-in described above is intended for the dual-form-factor case where the same project also targets phones. For the standalone case, the recommended approach is to ship two separate Uno Platform apps:
AndroidWear <UnoFeatures> opt-in here.To set up the standalone watch app:
dotnet new unoapp -o MyApp.Watch) targeting only Android, and enable the AndroidWear opt-in.MyApp.Watch/Platforms/Android/AndroidManifest.xml, change android:required on the android.hardware.type.watch <uses-feature> element from false to true. This filters the APK out of the phone Play Store listing so it is only installable on watches.com.companyname.myapp.watch) so the watch app and phone app can coexist on the same paired device.This split mirrors Google's recommendation for Wear OS distribution and gives each form factor an independent release cycle.
You can test Wear OS support using the Wear OS emulator images available in Android Studio's device manager. Create a Round or Square Wear emulator (API 33 or higher recommended) and deploy your app directly. For the dual-form-factor pattern, also pair the Wear emulator to a phone emulator and verify that the app installs and launches on both devices.