blob: 59634fc49f27fc89a25135eff1496b81f25a8ae4 [file] [log] [blame]
Trevor Johnsf420ff02014-10-22 20:10:29 -07001<?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 Johns527a4f32014-11-12 11:39:30 -080018 package="com.example.android.wearable.timer" >
Trevor Johnsf420ff02014-10-22 20:10:29 -070019
20 <uses-sdk android:minSdkVersion="20"
Trevor Johns8af0d722015-11-17 21:38:44 -080021 android:targetSdkVersion="22" />
Trevor Johnsf420ff02014-10-22 20:10:29 -070022
23 <uses-feature android:name="android.hardware.type.watch" />
24
25 <application
26 android:icon="@mipmap/ic_launcher"
27 android:label="@string/app_name"
28 android:theme="@android:style/Theme.DeviceDefault.Light"
29 android:allowBackup="true">
30
31 <!-- Timer components -->
32 <activity android:name=".SetTimerActivity">
33 <intent-filter>
34 <action android:name="com.android.example.clockwork.timer.TIMER"/>
35 <category android:name="android.intent.category.DEFAULT"/>
36 </intent-filter>
37 <!-- Set a timer voice command -->
38 <intent-filter>
39 <action android:name="android.intent.action.SET_TIMER"/>
40 <category android:name="android.intent.category.DEFAULT"/>
41 </intent-filter>
42 </activity>
43
44 <service android:name=".TimerNotificationService" />
45
46 </application>
47</manifest>