1<?xml version="1.0" encoding="utf-8"?>
2<manifest package="com.example.android.wearable.wear.weardrawers"
3          xmlns:android="http://schemas.android.com/apk/res/android">
4
5    <uses-feature android:name="android.hardware.type.watch"/>
6    <!-- Required for Always-on. -->
7    <uses-permission android:name="android.permission.WAKE_LOCK" />
8
9    <application
10        android:allowBackup="true"
11        android:icon="@mipmap/ic_launcher"
12        android:label="@string/app_name"
13        android:supportsRtl="true"
14        android:theme="@android:style/Theme.DeviceDefault">
15
16        <meta-data
17            android:name="com.google.android.wearable.standalone"
18            android:value="true" />
19
20        <!--If you want your app to run on pre-22, then set required to false -->
21        <uses-library android:name="com.google.android.wearable" android:required="false" />
22
23        <activity
24            android:name=".MainActivity"
25            android:label="@string/app_name">
26            <intent-filter>
27                <action android:name="android.intent.action.MAIN"/>
28                <category android:name="android.intent.category.LAUNCHER"/>
29            </intent-filter>
30        </activity>
31    </application>
32</manifest>
33