Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2014 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Trevor Johns | 527a4f3 | 2014-11-12 11:39:30 -0800 | [diff] [blame] | 18 | package="com.example.android.wearable.gridviewpager" > |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 19 | |
| 20 | <uses-sdk android:minSdkVersion="20" |
Trevor Johns | 8af0d72 | 2015-11-17 21:38:44 -0800 | [diff] [blame] | 21 | android:targetSdkVersion="22" /> |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 22 | |
| 23 | <uses-feature android:name="android.hardware.type.watch" /> |
| 24 | |
| 25 | <application |
| 26 | android:allowBackup="true" |
| 27 | android:icon="@drawable/ic_launcher" |
| 28 | android:label="@string/app_name" |
| 29 | android:theme="@android:style/Theme.DeviceDefault.Light" > |
Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 30 | |
| 31 | <meta-data |
| 32 | android:name="com.google.android.wearable.standalone" |
| 33 | android:value="true" /> |
| 34 | |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 35 | <activity |
Trevor Johns | 527a4f3 | 2014-11-12 11:39:30 -0800 | [diff] [blame] | 36 | android:name="com.example.android.wearable.gridviewpager.MainActivity" |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 37 | android:label="@string/app_name" > |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.LAUNCHER" /> |
| 41 | </intent-filter> |
| 42 | </activity> |
| 43 | </application> |
| 44 | |
| 45 | </manifest> |