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-sdk android:minSdkVersion="14"/> 21 22 <uses-feature android:name="android.hardware.type.watch"/> 23 24 <!-- Required for Always-on. --> 25 <uses-permission android:name="android.permission.WAKE_LOCK" /> 26 27 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 28 <uses-permission android:name="android.permission.READ_PHONE_STATE"/> 29 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 30 31 <application 32 android:allowBackup="true" 33 android:icon="@drawable/launcher_image" 34 android:label="@string/app_name" 35 android:supportsRtl="true" 36 android:theme="@style/SampleAppTheme"> 37 38 <activity 39 android:label="@string/app_name" 40 android:name=".MainActivity"> 41 <intent-filter> 42 <action android:name="android.intent.action.MAIN"/> 43 <category android:name="android.intent.category.LAUNCHER"/> 44 </intent-filter> 45 </activity> 46 <activity 47 android:label="@string/lists" 48 android:name=".ListsActivity"> 49 </activity> 50 <activity 51 android:label="@string/dialogs" 52 android:name=".DialogsActivity"> 53 </activity> 54 <activity 55 android:label="@string/progress" 56 android:name=".ProgressActivity"> 57 </activity> 58 <activity 59 android:label="@string/controls" 60 android:name=".ControlsActivity"> 61 </activity> 62 <activity 63 android:label="@string/notifications" 64 android:name=".NotificationsActivity"> 65 </activity> 66 <activity 67 android:label="@string/accessibility" 68 android:name=".AccessibilityActivity"> 69 </activity> 70 <activity 71 android:label="@string/a_long_list" 72 android:name=".LongListActivity"> 73 </activity> 74 <activity 75 android:label="@string/list_of_graphics" 76 android:name=".ListOfGraphicsActivity"> 77 </activity> 78 <activity 79 android:label="@string/photo_carousel" 80 android:name=".PhotoCarouselActivity"> 81 </activity> 82 <activity 83 android:label="@string/images" 84 android:name=".ImagesActivity"> 85 </activity> 86 <activity 87 android:label="@string/zoom_image" 88 android:name=".ZoomImageActivity"> 89 </activity> 90 <activity 91 android:label="@string/open_on_phone_animation" 92 android:name=".OpenOnPhoneAnimationActivity" 93 android:theme="@style/OpenOnPhoneAnimationTheme"> 94 </activity> 95 <activity 96 android:label="@string/radio_list" 97 android:name=".RadioListActivity"> 98 </activity> 99 <activity 100 android:label="@string/full_screen" 101 android:name=".FullScreenActivity"> 102 </activity> 103 <activity 104 android:label="@string/in_line" 105 android:name=".InLineActivity"> 106 </activity> 107 </application> 108</manifest> 109