blob: 55bca835180ce97199fcafe4995f78ba50902fd4 [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"
Santos Cordonf35365f2015-03-05 14:39:26 -080024 android:allowBackup="false">
Santos Cordon153281e2015-02-23 14:51:06 -080025
Jeff Hamilton4f864362009-04-23 02:29:07 -050026 <provider android:name="ContactsProvider2"
Jeff Hamilton5e8793f2009-08-21 00:53:01 -050027 android:authorities="contacts;com.android.contacts"
Fred Quintanac09c0852009-08-25 20:19:33 -070028 android:label="@string/provider_label"
Jeff Hamilton4f864362009-04-23 02:29:07 -050029 android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070030 android:exported="true"
Brian Attwelle3afdce2015-05-27 19:49:13 -070031 android:grantUriPermissions="true"
Jeff Hamilton4f864362009-04-23 02:29:07 -050032 android:readPermission="android.permission.READ_CONTACTS"
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070033 android:writePermission="android.permission.WRITE_CONTACTS">
Mathew Inwoodec987e52013-09-30 15:49:39 +010034 <path-permission
35 android:pathPrefix="/search_suggest_query"
36 android:readPermission="android.permission.GLOBAL_SEARCH" />
37 <path-permission
38 android:pathPrefix="/search_suggest_shortcut"
39 android:readPermission="android.permission.GLOBAL_SEARCH" />
40 <path-permission
41 android:pathPattern="/contacts/.*/photo"
42 android:readPermission="android.permission.GLOBAL_SEARCH" />
Dianne Hackbornb5b7b172010-09-01 22:55:56 -070043 <grant-uri-permission android:pathPattern=".*" />
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070044 </provider>
45
46 <provider android:name="CallLogProvider"
47 android:authorities="call_log"
48 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070049 android:exported="true"
Daniel Lehmanna9bdc552012-04-05 20:37:33 -070050 android:readPermission="android.permission.READ_CALL_LOG"
51 android:writePermission="android.permission.WRITE_CALL_LOG">
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070052 </provider>
Jeff Sharkeyb6509822009-05-14 18:04:39 -070053
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010054 <provider android:name="VoicemailContentProvider"
55 android:authorities="com.android.voicemail"
56 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070057 android:exported="true"
Debashish Chatterjee98a77ec2011-08-03 13:31:25 +010058 android:permission="com.android.voicemail.permission.ADD_VOICEMAIL">
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010059 </provider>
60
Zheng Fu384b4482015-04-29 16:27:44 -070061 <provider android:name="ContactMetadataProvider"
62 android:authorities="com.android.contacts.metadata"
63 android:multiprocess="false"
64 android:exported="true"
Zheng Fu2c76de22015-05-01 15:52:46 -070065 android:permission="android.permission.READ_WRITE_CONTACT_METADATA">
Zheng Fu384b4482015-04-29 16:27:44 -070066 </provider>
67
Jeff Hamilton71091332010-05-25 22:13:01 -050068 <!-- Handles database upgrades after OTAs, then disables itself -->
69 <receiver android:name="ContactsUpgradeReceiver">
70 <!-- This broadcast is sent after the core system has finished
71 booting, before the home app is launched or BOOT_COMPLETED
72 is sent. -->
73 <intent-filter>
74 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
75 </intent-filter>
76 </receiver>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070077
Santos Cordonb39eeb42015-02-27 09:36:23 -080078 <receiver android:name="PhoneAccountRegistrationReceiver"
79 android:permission="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION">
80 <!-- Broadcast sent after a phone account is registered in telecom. -->
81 <intent-filter>
82 <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/>
83 </intent-filter>
84 </receiver>
85
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070086 <receiver android:name="PackageIntentReceiver">
87 <intent-filter>
88 <action android:name="android.intent.action.PACKAGE_ADDED" />
89 <data android:scheme="package" />
90 </intent-filter>
91 <intent-filter>
92 <action android:name="android.intent.action.PACKAGE_REPLACED" />
93 <data android:scheme="package" />
94 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070095 <intent-filter>
96 <action android:name="android.intent.action.PACKAGE_REMOVED" />
97 <data android:scheme="package" />
98 </intent-filter>
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070099 <intent-filter>
100 <action android:name="android.intent.action.PACKAGE_CHANGED" />
101 <data android:scheme="package" />
102 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -0700103 </receiver>
Dmitri Plotnikov53fac8f2010-08-16 19:42:29 -0700104
105 <receiver android:name="LocaleChangeReceiver">
106 <intent-filter>
107 <action android:name="android.intent.action.LOCALE_CHANGED"/>
108 </intent-filter>
109 </receiver>
Debashish Chatterjeec6eb4fe2011-07-28 12:23:22 +0100110
111 <service android:name="VoicemailCleanupService"/>
Makoto Onuki8a6e02a2012-07-18 16:13:23 -0700112
113 <activity android:name=".debug.ContactsDumpActivity"
114 android:label="@string/debug_dump_title"
115 android:theme="@android:style/Theme.Holo.Dialog"
116 >
117 <intent-filter>
118 <action android:name="com.android.providers.contacts.DUMP_DATABASE"/>
119 <category android:name="android.intent.category.DEFAULT"/>
120 </intent-filter>
121 </activity>
122
Makoto Onuki623659e2012-08-13 17:56:25 -0700123 <provider android:name=".debug.DumpFileProvider"
124 android:authorities="com.android.contacts.dumpfile"
125 android:exported="true">
126 </provider>
127
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -0800128 </application>
129</manifest>