Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright 2013 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 | |
| 18 | |
| 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Trevor Johns | 527a4f3 | 2014-11-12 11:39:30 -0800 | [diff] [blame] | 20 | package="com.example.android.wearable.synchronizednotifications"> |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 21 | |
| 22 | <uses-sdk android:minSdkVersion="20" |
| 23 | android:targetSdkVersion="20" /> |
| 24 | |
| 25 | <uses-feature android:name="android.hardware.type.watch" /> |
| 26 | |
| 27 | <application |
| 28 | android:allowBackup="true" |
| 29 | android:icon="@drawable/ic_launcher" |
| 30 | android:label="@string/app_name" |
| 31 | android:theme="@android:style/Theme.DeviceDefault.Light" > |
| 32 | <meta-data android:name="com.google.android.gms.version" |
| 33 | android:value="@integer/google_play_services_version" /> |
| 34 | <activity |
| 35 | android:name=".WearableActivity" |
| 36 | android:label="@string/app_name" > |
| 37 | <intent-filter> |
| 38 | <action android:name="android.intent.action.MAIN" /> |
| 39 | <category android:name="android.intent.category.LAUNCHER" /> |
| 40 | </intent-filter> |
| 41 | </activity> |
| 42 | <service android:name=".NotificationUpdateService"> |
| 43 | <intent-filter> |
| 44 | <action |
| 45 | android:name="com.google.android.gms.wearable.BIND_LISTENER" /> |
| 46 | </intent-filter> |
| 47 | <intent-filter> |
| 48 | <action |
Trevor Johns | 527a4f3 | 2014-11-12 11:39:30 -0800 | [diff] [blame] | 49 | android:name="com.example.android.wearable.synchronizednotifications.DISMISS" /> |
Trevor Johns | f420ff0 | 2014-10-22 20:10:29 -0700 | [diff] [blame] | 50 | </intent-filter> |
| 51 | </service> |
| 52 | |
| 53 | </application> |
| 54 | |
| 55 | </manifest> |