1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:tools="http://schemas.android.com/tools" 3 xmlns:android="http://schemas.android.com/apk/res/android"> 4 5 <application 6 android:allowBackup="true" 7 android:icon="@drawable/watch_icon" 8 android:label="@string/app_name" 9 android:supportsRtl="true" 10 android:theme="@android:style/Theme.DeviceDefault"> 11 12 <meta-data 13 android:name="com.google.android.wearable.standalone" 14 android:value="true" 15 tools:ignore="MetadataTagInsideApplicationTag" /> 16 <activity 17 android:name=".app.MainActivity" 18 android:exported="true" 19 android:taskAffinity=""> 20 <intent-filter> 21 <action android:name="android.intent.action.MAIN" /> 22 23 <category android:name="android.intent.category.LAUNCHER" /> 24 </intent-filter> 25 </activity> 26 27 <service 28 android:name=".tile.PlaygroundTileService" 29 android:exported="true" 30 android:label="@string/tile_label" 31 android:icon="@drawable/watch_icon" 32 android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER"> 33 <intent-filter> 34 <action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" /> 35 </intent-filter> 36 </service> 37 38 <uses-library 39 android:name="com.google.android.wearable" 40 android:required="true" /> 41 </application> 42 43 <uses-feature android:name="android.hardware.type.watch" /> 44</manifest>