blob: e82cea8a99e3fb3b4b213b7bee3c9f5684ad4b6e [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
Jay Shraunerfda7fd92015-08-31 09:51:47 -070020 <uses-sdk
Wenyi Wang6ad82692016-02-23 15:41:21 -080021 android:minSdkVersion="21"
Wenyi Wang5289a292016-06-27 12:42:54 -070022 android:targetSdkVersion="24" />
Jay Shraunerfda7fd92015-08-31 09:51:47 -070023
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070024 <uses-permission android:name="android.permission.READ_CONTACTS" />
Flavio Lerda27d76482011-06-13 17:20:43 +010025 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
Daniel Lehmann20130582010-10-21 20:51:15 -070026 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070027
Makoto Onukidcf751d2011-10-17 16:14:06 -070028 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
29 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
30 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
31 <uses-permission android:name="android.permission.READ_SYNC_STATS" />
32 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
33 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
34
Makoto Onukif68c5e72012-03-01 15:14:16 -080035 <uses-permission android:name="android.permission.READ_PROFILE" />
36 <uses-permission android:name="android.permission.READ_SOCIAL_STREAM" />
37
Walter Jangad2acfb2016-03-09 12:23:09 -080038 <application
39 android:label="@string/applicationLabel">
40
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080041 <uses-library android:name="android.test.runner" />
Evan Millare49dfac2009-06-30 15:21:47 -070042 <meta-data android:name="com.android.contacts.iconset" android:resource="@xml/iconset" />
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070043
Walter Jangad2acfb2016-03-09 12:23:09 -080044 <activity android:name=".allintents.AllIntentsActivity">
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070045 <intent-filter>
46 <action android:name="android.intent.action.MAIN" />
47 <category android:name="android.intent.category.DEFAULT" />
48 <category android:name="android.intent.category.LAUNCHER" />
49 </intent-filter>
50 </activity>
51
Walter Jangad2acfb2016-03-09 12:23:09 -080052 <activity android:name=".allintents.ResultActivity"/>
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070053
Walter Jangad2acfb2016-03-09 12:23:09 -080054 <activity android:name=".quickcontact.QuickContactTestsActivity"/>
Flavio Lerda27d76482011-06-13 17:20:43 +010055
Makoto Onukidcf751d2011-10-17 16:14:06 -070056 <!--
57 Test authenticators/sync adapters.
58
59 The idea is to have multiple account types with various edit schemas. We use subclasses
60 so we could easily add multiple pairs of authenticators and sync adapters.
61 Unfortunately there's an issue with the contacts app which prevents a single apk from
62 having multiple contacts.xml files, so for now we only declare one account type here.
63 -->
64 <service android:name=".testauth.TestAuthenticationService$Basic" android:exported="true">
65 <intent-filter>
66 <action android:name="android.accounts.AccountAuthenticator" />
67 </intent-filter>
68 <meta-data
69 android:name="android.accounts.AccountAuthenticator"
70 android:resource="@xml/test_basic_authenticator" />
71 </service>
72
Makoto Onuki8e347442011-11-29 17:17:33 -080073 <service android:name=".QueryService" />
Makoto Onuki65488852011-11-30 10:55:31 -080074 <service android:name=".PhoneNumberTestService" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080075 </application>
76
Evan Millare49dfac2009-06-30 15:21:47 -070077 <instrumentation android:name="android.test.InstrumentationTestRunner"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080078 android:targetPackage="com.android.contacts"
Evan Millare49dfac2009-06-30 15:21:47 -070079 android:label="Contacts app tests">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080080 </instrumentation>
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070081
Brett Chabot0e89b192009-11-12 11:48:30 -080082 <instrumentation android:name="com.android.contacts.ContactsLaunchPerformance"
83 android:targetPackage="com.android.contacts"
84 android:label="Contacts launch performance">
85 </instrumentation>
Guang Zhu3b616942010-04-01 11:26:21 -070086
Dmitri Plotnikov31ec0b52010-04-19 13:56:16 -070087</manifest>