The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 1 | <?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 Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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.contacts.tests"> |
| 19 | |
Raman Tenneti | 3d752de | 2019-10-15 11:58:18 -0700 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29" /> |
Jay Shrauner | fda7fd9 | 2015-08-31 09:51:47 -0700 | [diff] [blame] | 21 | |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
Flavio Lerda | 27d7648 | 2011-06-13 17:20:43 +0100 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
Daniel Lehmann | 2013058 | 2010-10-21 20:51:15 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 25 | |
Makoto Onuki | dcf751d | 2011-10-17 16:14:06 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 27 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 28 | <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
| 29 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
| 30 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 31 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| 32 | |
Makoto Onuki | f68c5e7 | 2012-03-01 15:14:16 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 34 | <uses-permission android:name="android.permission.READ_SOCIAL_STREAM" /> |
| 35 | |
Walter Jang | ad2acfb | 2016-03-09 12:23:09 -0800 | [diff] [blame] | 36 | <application |
yaolu | 14235e6 | 2016-10-21 16:09:42 -0700 | [diff] [blame] | 37 | android:icon="@mipmap/ic_contacts_launcher" |
Walter Jang | ad2acfb | 2016-03-09 12:23:09 -0800 | [diff] [blame] | 38 | android:label="@string/applicationLabel"> |
| 39 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 40 | <uses-library android:name="android.test.runner" /> |
Evan Millar | e49dfac | 2009-06-30 15:21:47 -0700 | [diff] [blame] | 41 | <meta-data android:name="com.android.contacts.iconset" android:resource="@xml/iconset" /> |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 42 | |
Walter Jang | ad2acfb | 2016-03-09 12:23:09 -0800 | [diff] [blame] | 43 | <activity android:name=".allintents.AllIntentsActivity"> |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 44 | <intent-filter> |
| 45 | <action android:name="android.intent.action.MAIN" /> |
| 46 | <category android:name="android.intent.category.DEFAULT" /> |
| 47 | <category android:name="android.intent.category.LAUNCHER" /> |
| 48 | </intent-filter> |
| 49 | </activity> |
| 50 | |
Walter Jang | 574601f | 2016-09-18 09:42:38 -0700 | [diff] [blame] | 51 | <activity android:name=".allintents.ResultActivity"> |
| 52 | <intent-filter> |
| 53 | <action android:name="android.intent.action.VIEW" /> |
| 54 | <category android:name="android.intent.category.DEFAULT" /> |
| 55 | <data android:mimeType="vnd.android.cursor.item/vnd.contactstest.profile" /> |
| 56 | </intent-filter> |
| 57 | </activity> |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 58 | |
Walter Jang | ad2acfb | 2016-03-09 12:23:09 -0800 | [diff] [blame] | 59 | <activity android:name=".quickcontact.QuickContactTestsActivity"/> |
Flavio Lerda | 27d7648 | 2011-06-13 17:20:43 +0100 | [diff] [blame] | 60 | |
Makoto Onuki | dcf751d | 2011-10-17 16:14:06 -0700 | [diff] [blame] | 61 | <!-- |
| 62 | Test authenticators/sync adapters. |
| 63 | |
| 64 | The idea is to have multiple account types with various edit schemas. We use subclasses |
| 65 | so we could easily add multiple pairs of authenticators and sync adapters. |
| 66 | Unfortunately there's an issue with the contacts app which prevents a single apk from |
| 67 | having multiple contacts.xml files, so for now we only declare one account type here. |
| 68 | --> |
| 69 | <service android:name=".testauth.TestAuthenticationService$Basic" android:exported="true"> |
| 70 | <intent-filter> |
| 71 | <action android:name="android.accounts.AccountAuthenticator" /> |
| 72 | </intent-filter> |
| 73 | <meta-data |
| 74 | android:name="android.accounts.AccountAuthenticator" |
| 75 | android:resource="@xml/test_basic_authenticator" /> |
| 76 | </service> |
Walter Jang | 98d41d7 | 2016-09-15 13:12:51 -0700 | [diff] [blame] | 77 | <service android:name=".testauth.TestSyncService$Basic" android:exported="true" > |
| 78 | <intent-filter> |
| 79 | <action android:name="android.content.SyncAdapter"/> |
| 80 | </intent-filter> |
| 81 | <meta-data |
| 82 | android:name="android.content.SyncAdapter" |
| 83 | android:resource="@xml/test_basic_syncadapter" /> |
| 84 | <meta-data |
| 85 | android:name="android.provider.CONTACTS_STRUCTURE" |
Walter Jang | 574601f | 2016-09-18 09:42:38 -0700 | [diff] [blame] | 86 | android:resource="@xml/contacts_contactsdatakind" /> |
Walter Jang | 98d41d7 | 2016-09-15 13:12:51 -0700 | [diff] [blame] | 87 | </service> |
Makoto Onuki | dcf751d | 2011-10-17 16:14:06 -0700 | [diff] [blame] | 88 | |
Makoto Onuki | 8e34744 | 2011-11-29 17:17:33 -0800 | [diff] [blame] | 89 | <service android:name=".QueryService" /> |
Makoto Onuki | 6548885 | 2011-11-30 10:55:31 -0800 | [diff] [blame] | 90 | <service android:name=".PhoneNumberTestService" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 91 | </application> |
| 92 | |
Brett Chabot | bebf2dd | 2018-12-13 19:06:22 -0800 | [diff] [blame] | 93 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 94 | android:targetPackage="com.android.contacts" |
Evan Millar | e49dfac | 2009-06-30 15:21:47 -0700 | [diff] [blame] | 95 | android:label="Contacts app tests"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 96 | </instrumentation> |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 97 | |
Brett Chabot | 0e89b19 | 2009-11-12 11:48:30 -0800 | [diff] [blame] | 98 | <instrumentation android:name="com.android.contacts.ContactsLaunchPerformance" |
| 99 | android:targetPackage="com.android.contacts" |
| 100 | android:label="Contacts launch performance"> |
| 101 | </instrumentation> |
Guang Zhu | 3b61694 | 2010-04-01 11:26:21 -0700 | [diff] [blame] | 102 | |
Marcus Hagerott | fd79e87 | 2016-10-11 17:25:45 -0700 | [diff] [blame] | 103 | <instrumentation |
| 104 | android:name="com.android.contacts.RunMethodInstrumentation" |
| 105 | android:targetPackage="com.android.contacts" |
| 106 | android:label="Run Contacts Method"> |
| 107 | </instrumentation> |
| 108 | |
Dmitri Plotnikov | 31ec0b5 | 2010-04-19 13:56:16 -0700 | [diff] [blame] | 109 | </manifest> |