blob: fdf8e5805cf6abb6490a41b157ae66cbeeefd42f [file] [log] [blame]
Guang Zhucfa35d52010-04-01 18:13:01 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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"
18 package="com.android.deskclock.tests">
19
Patrick Scott4d42d3d2010-09-22 09:17:29 -040020 <uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
Guang Zhucfa35d52010-04-01 18:13:01 -070021 <application>
22 <uses-library android:name="android.test.runner" />
Patrick Scott1a792572010-05-28 15:31:36 -040023
24 <activity android:name="TestAddAlarm" android:label="Test Adding Alarm">
Patrick Scott4d42d3d2010-09-22 09:17:29 -040025 <intent-filter>
26 <action android:name="android.intent.action.MAIN" />
27 <category android:name="android.intent.category.DEFAULT" />
28 <category android:name="android.intent.category.LAUNCHER" />
29 </intent-filter>
Patrick Scott1a792572010-05-28 15:31:36 -040030 </activity>
Guang Zhucfa35d52010-04-01 18:13:01 -070031 </application>
32
33 <instrumentation android:name="com.android.deskclock.DeskClockLaunchPerformance"
34 android:targetPackage="com.android.deskclock"
35 android:label="DeskClock Launch Performance">
36 </instrumentation>
37
38</manifest>