blob: 8017966740ddb099cfc7972f45b88ef8f8fd5e54 [file] [log] [blame]
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.providers.contacts"
Dianne Hackborn60947512011-08-05 11:22:07 -07003 android:sharedUserId="android.uid.shared"
4 android:sharedUserLabel="@string/sharedUserLabel">
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -08005
Subir Jhanba6bef4a2012-08-06 18:26:57 -07006 <uses-permission android:name="android.permission.BIND_DIRECTORY_SEARCH" />
Santos Cordonb39eeb42015-02-27 09:36:23 -08007 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Makoto Onuki69d3d362014-07-07 11:44:31 -07008 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Makoto Onuki6bcd74c2014-07-08 14:13:23 -07009 <uses-permission android:name="android.permission.MANAGE_USERS" />
Santos Cordonb39eeb42015-02-27 09:36:23 -080010 <uses-permission android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION" />
Yorke Lee399faf22015-05-28 11:10:16 -070011 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Santos Cordonb39eeb42015-02-27 09:36:23 -080012 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Santos Cordonf35365f2015-03-05 14:39:26 -080013 <uses-permission android:name="android.permission.SEND_CALL_LOG_CHANGE" />
Santos Cordonb39eeb42015-02-27 09:36:23 -080014 <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080015
Santos Cordonf35365f2015-03-05 14:39:26 -080016 <permission
17 android:name="android.permission.SEND_CALL_LOG_CHANGE"
18 android:label="Broadcast that a change happened to the call log."
19 android:protectionLevel="signature|system"/>
20
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080021 <application android:process="android.process.acore"
Evan Millar28f88572009-07-08 14:58:53 -070022 android:label="@string/app_label"
Makoto Onuki2b362f72012-05-04 13:21:18 -070023 android:icon="@drawable/app_icon"
Alex Klyubin733620e2015-05-20 12:17:03 -070024 android:allowBackup="false"
25 android:usesCleartextTraffic="false">
Santos Cordon153281e2015-02-23 14:51:06 -080026
Jeff Hamilton4f864362009-04-23 02:29:07 -050027 <provider android:name="ContactsProvider2"
Jeff Hamilton5e8793f2009-08-21 00:53:01 -050028 android:authorities="contacts;com.android.contacts"
Fred Quintanac09c0852009-08-25 20:19:33 -070029 android:label="@string/provider_label"
Jeff Hamilton4f864362009-04-23 02:29:07 -050030 android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070031 android:exported="true"
Brian Attwelle3afdce2015-05-27 19:49:13 -070032 android:grantUriPermissions="true"
Jeff Hamilton4f864362009-04-23 02:29:07 -050033 android:readPermission="android.permission.READ_CONTACTS"
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070034 android:writePermission="android.permission.WRITE_CONTACTS">
Mathew Inwoodec987e52013-09-30 15:49:39 +010035 <path-permission
36 android:pathPrefix="/search_suggest_query"
37 android:readPermission="android.permission.GLOBAL_SEARCH" />
38 <path-permission
39 android:pathPrefix="/search_suggest_shortcut"
40 android:readPermission="android.permission.GLOBAL_SEARCH" />
41 <path-permission
42 android:pathPattern="/contacts/.*/photo"
43 android:readPermission="android.permission.GLOBAL_SEARCH" />
Dianne Hackbornb5b7b172010-09-01 22:55:56 -070044 <grant-uri-permission android:pathPattern=".*" />
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070045 </provider>
46
47 <provider android:name="CallLogProvider"
48 android:authorities="call_log"
49 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070050 android:exported="true"
Daniel Lehmanna9bdc552012-04-05 20:37:33 -070051 android:readPermission="android.permission.READ_CALL_LOG"
52 android:writePermission="android.permission.WRITE_CALL_LOG">
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070053 </provider>
Jeff Sharkeyb6509822009-05-14 18:04:39 -070054
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010055 <provider android:name="VoicemailContentProvider"
56 android:authorities="com.android.voicemail"
57 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070058 android:exported="true"
Debashish Chatterjee98a77ec2011-08-03 13:31:25 +010059 android:permission="com.android.voicemail.permission.ADD_VOICEMAIL">
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010060 </provider>
61
Zheng Fu384b4482015-04-29 16:27:44 -070062 <provider android:name="ContactMetadataProvider"
Tingting Wang29dde642015-08-17 11:47:13 -070063 android:authorities="com.android.contacts.metadata"
Zheng Fu384b4482015-04-29 16:27:44 -070064 android:multiprocess="false"
65 android:exported="true"
Zheng Fu2c76de22015-05-01 15:52:46 -070066 android:permission="android.permission.READ_WRITE_CONTACT_METADATA">
Zheng Fu384b4482015-04-29 16:27:44 -070067 </provider>
68
Jeff Hamilton71091332010-05-25 22:13:01 -050069 <!-- Handles database upgrades after OTAs, then disables itself -->
70 <receiver android:name="ContactsUpgradeReceiver">
71 <!-- This broadcast is sent after the core system has finished
72 booting, before the home app is launched or BOOT_COMPLETED
73 is sent. -->
74 <intent-filter>
75 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
76 </intent-filter>
77 </receiver>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070078
Santos Cordonb39eeb42015-02-27 09:36:23 -080079 <receiver android:name="PhoneAccountRegistrationReceiver"
80 android:permission="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION">
81 <!-- Broadcast sent after a phone account is registered in telecom. -->
82 <intent-filter>
83 <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/>
84 </intent-filter>
85 </receiver>
86
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070087 <receiver android:name="PackageIntentReceiver">
88 <intent-filter>
89 <action android:name="android.intent.action.PACKAGE_ADDED" />
90 <data android:scheme="package" />
91 </intent-filter>
92 <intent-filter>
93 <action android:name="android.intent.action.PACKAGE_REPLACED" />
94 <data android:scheme="package" />
95 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070096 <intent-filter>
97 <action android:name="android.intent.action.PACKAGE_REMOVED" />
98 <data android:scheme="package" />
99 </intent-filter>
Dmitri Plotnikov72e30032010-08-05 10:53:44 -0700100 <intent-filter>
101 <action android:name="android.intent.action.PACKAGE_CHANGED" />
102 <data android:scheme="package" />
103 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -0700104 </receiver>
Dmitri Plotnikov53fac8f2010-08-16 19:42:29 -0700105
106 <receiver android:name="LocaleChangeReceiver">
107 <intent-filter>
108 <action android:name="android.intent.action.LOCALE_CHANGED"/>
109 </intent-filter>
110 </receiver>
Debashish Chatterjeec6eb4fe2011-07-28 12:23:22 +0100111
112 <service android:name="VoicemailCleanupService"/>
Makoto Onuki8a6e02a2012-07-18 16:13:23 -0700113
114 <activity android:name=".debug.ContactsDumpActivity"
115 android:label="@string/debug_dump_title"
116 android:theme="@android:style/Theme.Holo.Dialog"
117 >
118 <intent-filter>
119 <action android:name="com.android.providers.contacts.DUMP_DATABASE"/>
120 <category android:name="android.intent.category.DEFAULT"/>
121 </intent-filter>
122 </activity>
123
Makoto Onuki623659e2012-08-13 17:56:25 -0700124 <provider android:name=".debug.DumpFileProvider"
125 android:authorities="com.android.contacts.dumpfile"
126 android:exported="true">
127 </provider>
128
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -0800129 </application>
130</manifest>