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        <!--If you want your app to run on pre-22, then set required to false -->
17        <uses-library android:name="com.google.android.wearable" android:required="false" />
18
19        <activity
20            android:name=".MainActivity"
21            android:label="@string/app_name">
22            <intent-filter>
23                <action android:name="android.intent.action.MAIN"/>
24
25                <category android:name="android.intent.category.LAUNCHER"/>
26            </intent-filter>
27        </activity>
28    </application>
29</manifest>
30