1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 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 xmlns:android="http://schemas.android.com/apk/res/android"> 18 19 <application 20 android:icon="@drawable/app_sample_code" 21 android:label="SupportWearDemos" 22 android:theme="@android:style/Theme.DeviceDefault"> 23 <activity 24 android:name=".app.SimpleWearableRecyclerViewDemo" 25 android:exported="true" /> 26 <activity 27 android:name=".app.SimpleRecyclerViewDemo" 28 android:exported="true" /> 29 <activity 30 android:name=".app.SimpleNestedScrollViewDemo" 31 android:exported="true" /> 32 <activity 33 android:name=".app.WearableSwitchDemo" 34 android:exported="true" /> 35 <activity 36 android:name=".app.ConfirmationOverlayDemo" 37 android:exported="true" /> 38 <activity 39 android:name=".app.CircularProgressLayoutDemo" 40 android:exported="true" /> 41 <activity 42 android:name=".app.RoundedDrawableDemo" 43 android:exported="true" /> 44 <activity 45 android:name=".app.drawers.WearableDrawersDemo" 46 android:exported="true" /> 47 <activity 48 android:name=".app.AmbientModeDemo" 49 android:exported="true" /> 50 <activity 51 android:name=".app.AlertDialogDemo" 52 android:exported="true" 53 android:theme="@style/Theme.AppCompat.Light" /> 54 <activity 55 android:name=".app.MainDemoActivity" 56 android:exported="true"> 57 <intent-filter> 58 <action android:name="android.intent.action.MAIN" /> 59 <category android:name="android.intent.category.LAUNCHER" /> 60 </intent-filter> 61 </activity> 62 63 <uses-library 64 android:name="com.google.android.wearable" 65 android:required="true" /> 66 </application> 67 68 <!-- Required for ambient mode support. --> 69 <uses-feature android:name="android.hardware.type.watch" /> 70 71 <uses-permission android:name="android.permission.WAKE_LOCK" /> 72 73</manifest> 74