blob: 54f7939a91514e5cf16e08dbc7a5ec530fa54986 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -07007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -07009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 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.contacts.tests">
19
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070020 <uses-permission android:name="android.permission.READ_CONTACTS" />
Daniel Lehmann20130582010-10-21 20:51:15 -070021 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070022
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080023 <application>
24 <uses-library android:name="android.test.runner" />
Evan Millare49dfac2009-06-30 15:21:47 -070025 <meta-data android:name="com.android.contacts.iconset" android:resource="@xml/iconset" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070026 <uses-permission android:name="android.permission.READ_CONTACTS" />
Daniel Lehmann20130582010-10-21 20:51:15 -070027 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070028
29 <activity android:name=".allintents.AllIntentsActivity"
30 android:label="@string/contactsIntents"
31 >
32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.DEFAULT" />
35 <category android:name="android.intent.category.LAUNCHER" />
36 </intent-filter>
37 </activity>
38
39 <activity android:name=".allintents.ResultActivity"
40 android:label="@string/result"
41 >
42 <intent-filter>
43 <action android:name="android.intent.action.MAIN" />
44 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070045 </intent-filter>
46 </activity>
47
Dmitri Plotnikove1247222010-06-02 18:14:21 -070048 <activity android:name=".widget.PinnedHeaderUseCaseActivity"
49 android:label="@string/pinnedHeaderList"
50 >
51 <intent-filter>
52 <action android:name="android.intent.action.MAIN" />
53 <category android:name="android.intent.category.DEFAULT" />
54 <category android:name="android.intent.category.LAUNCHER" />
55 </intent-filter>
56 </activity>
57
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080058 </application>
59
Evan Millare49dfac2009-06-30 15:21:47 -070060 <instrumentation android:name="android.test.InstrumentationTestRunner"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080061 android:targetPackage="com.android.contacts"
Evan Millare49dfac2009-06-30 15:21:47 -070062 android:label="Contacts app tests">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080063 </instrumentation>
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070064
Brett Chabot0e89b192009-11-12 11:48:30 -080065 <instrumentation android:name="com.android.contacts.ContactsLaunchPerformance"
66 android:targetPackage="com.android.contacts"
67 android:label="Contacts launch performance">
68 </instrumentation>
Guang Zhu3b616942010-04-01 11:26:21 -070069
Guang Zhu3b616942010-04-01 11:26:21 -070070 <instrumentation android:name="com.android.contacts.DialerLaunchPerformance"
71 android:targetPackage="com.android.contacts"
72 android:label="Dialer launch performance">
73 </instrumentation>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080074
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070075</manifest>