• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2017 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<manifest package="com.example.android.wearable.wear.wearaccessibilityapp"
18          xmlns:android="http://schemas.android.com/apk/res/android">
19
20    <uses-feature android:name="android.hardware.type.watch"/>
21
22    <!-- Required for Always-on. -->
23    <uses-permission android:name="android.permission.WAKE_LOCK" />
24
25    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
26    <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
27    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
28
29    <application
30        android:allowBackup="true"
31        android:icon="@drawable/launcher_image"
32        android:label="@string/app_name"
33        android:supportsRtl="true"
34        android:theme="@style/SampleAppTheme">
35
36        <activity
37            android:label="@string/app_name"
38            android:name=".MainActivity">
39            <intent-filter>
40                <action android:name="android.intent.action.MAIN"/>
41                <category android:name="android.intent.category.LAUNCHER"/>
42            </intent-filter>
43        </activity>
44        <activity
45            android:label="@string/lists"
46            android:name=".ListsActivity">
47        </activity>
48        <activity
49            android:label="@string/dialogs"
50            android:name=".DialogsActivity">
51        </activity>
52        <activity
53            android:label="@string/progress"
54            android:name=".ProgressActivity">
55        </activity>
56        <activity
57            android:label="@string/controls"
58            android:name=".ControlsActivity">
59        </activity>
60        <activity
61            android:label="@string/notifications"
62            android:name=".NotificationsActivity">
63        </activity>
64        <activity
65            android:label="@string/accessibility"
66            android:name=".AccessibilityActivity">
67        </activity>
68        <activity
69            android:label="@string/a_long_list"
70            android:name=".LongListActivity">
71        </activity>
72        <activity
73            android:label="@string/list_of_graphics"
74            android:name=".ListOfGraphicsActivity">
75        </activity>
76        <activity
77            android:label="@string/photo_carousel"
78            android:name=".PhotoCarouselActivity">
79        </activity>
80        <activity
81            android:label="@string/images"
82            android:name=".ImagesActivity">
83        </activity>
84        <activity
85            android:label="@string/zoom_image"
86            android:name=".ZoomImageActivity">
87        </activity>
88        <activity
89            android:label="@string/open_on_phone_animation"
90            android:name=".OpenOnPhoneAnimationActivity"
91            android:theme="@style/OpenOnPhoneAnimationTheme">
92        </activity>
93        <activity
94            android:label="@string/radio_list"
95            android:name=".RadioListActivity">
96        </activity>
97        <activity
98            android:label="@string/full_screen"
99            android:name=".FullScreenActivity">
100        </activity>
101        <activity
102            android:label="@string/in_line"
103            android:name=".InLineActivity">
104        </activity>
105    </application>
106</manifest>
107