blob: 4e035f91eed1986f029b074bc6f2bea46e3c5083 [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 Leeade78bd2015-10-23 17:00:34 -070011 <uses-permission android:name="android.permission.READ_CONTACTS" />
Yorke Lee399faf22015-05-28 11:10:16 -070012 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Santos Cordonb39eeb42015-02-27 09:36:23 -080013 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Santos Cordonf35365f2015-03-05 14:39:26 -080014 <uses-permission android:name="android.permission.SEND_CALL_LOG_CHANGE" />
Santos Cordonb39eeb42015-02-27 09:36:23 -080015 <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
Yorke Leeade78bd2015-10-23 17:00:34 -070016 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080017
Santos Cordonf35365f2015-03-05 14:39:26 -080018 <permission
19 android:name="android.permission.SEND_CALL_LOG_CHANGE"
20 android:label="Broadcast that a change happened to the call log."
21 android:protectionLevel="signature|system"/>
22
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080023 <application android:process="android.process.acore"
Evan Millar28f88572009-07-08 14:58:53 -070024 android:label="@string/app_label"
Makoto Onuki2b362f72012-05-04 13:21:18 -070025 android:icon="@drawable/app_icon"
Alex Klyubin733620e2015-05-20 12:17:03 -070026 android:allowBackup="false"
27 android:usesCleartextTraffic="false">
Santos Cordon153281e2015-02-23 14:51:06 -080028
Jeff Hamilton4f864362009-04-23 02:29:07 -050029 <provider android:name="ContactsProvider2"
Jeff Hamilton5e8793f2009-08-21 00:53:01 -050030 android:authorities="contacts;com.android.contacts"
Fred Quintanac09c0852009-08-25 20:19:33 -070031 android:label="@string/provider_label"
Jeff Hamilton4f864362009-04-23 02:29:07 -050032 android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070033 android:exported="true"
Brian Attwelle3afdce2015-05-27 19:49:13 -070034 android:grantUriPermissions="true"
Jeff Hamilton4f864362009-04-23 02:29:07 -050035 android:readPermission="android.permission.READ_CONTACTS"
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070036 android:writePermission="android.permission.WRITE_CONTACTS">
Mathew Inwoodec987e52013-09-30 15:49:39 +010037 <path-permission
38 android:pathPrefix="/search_suggest_query"
39 android:readPermission="android.permission.GLOBAL_SEARCH" />
40 <path-permission
41 android:pathPrefix="/search_suggest_shortcut"
42 android:readPermission="android.permission.GLOBAL_SEARCH" />
43 <path-permission
44 android:pathPattern="/contacts/.*/photo"
45 android:readPermission="android.permission.GLOBAL_SEARCH" />
Dianne Hackbornb5b7b172010-09-01 22:55:56 -070046 <grant-uri-permission android:pathPattern=".*" />
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070047 </provider>
48
49 <provider android:name="CallLogProvider"
50 android:authorities="call_log"
51 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070052 android:exported="true"
Daniel Lehmanna9bdc552012-04-05 20:37:33 -070053 android:readPermission="android.permission.READ_CALL_LOG"
54 android:writePermission="android.permission.WRITE_CALL_LOG">
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070055 </provider>
Jeff Sharkeyb6509822009-05-14 18:04:39 -070056
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010057 <provider android:name="VoicemailContentProvider"
58 android:authorities="com.android.voicemail"
59 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070060 android:exported="true"
Debashish Chatterjee98a77ec2011-08-03 13:31:25 +010061 android:permission="com.android.voicemail.permission.ADD_VOICEMAIL">
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010062 </provider>
63
Jeff Hamilton71091332010-05-25 22:13:01 -050064 <!-- Handles database upgrades after OTAs, then disables itself -->
65 <receiver android:name="ContactsUpgradeReceiver">
66 <!-- This broadcast is sent after the core system has finished
67 booting, before the home app is launched or BOOT_COMPLETED
68 is sent. -->
69 <intent-filter>
70 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
71 </intent-filter>
72 </receiver>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070073
Santos Cordonb39eeb42015-02-27 09:36:23 -080074 <receiver android:name="PhoneAccountRegistrationReceiver"
75 android:permission="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION">
76 <!-- Broadcast sent after a phone account is registered in telecom. -->
77 <intent-filter>
78 <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/>
79 </intent-filter>
80 </receiver>
81
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070082 <receiver android:name="PackageIntentReceiver">
83 <intent-filter>
84 <action android:name="android.intent.action.PACKAGE_ADDED" />
85 <data android:scheme="package" />
86 </intent-filter>
87 <intent-filter>
88 <action android:name="android.intent.action.PACKAGE_REPLACED" />
89 <data android:scheme="package" />
90 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070091 <intent-filter>
92 <action android:name="android.intent.action.PACKAGE_REMOVED" />
93 <data android:scheme="package" />
94 </intent-filter>
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070095 <intent-filter>
96 <action android:name="android.intent.action.PACKAGE_CHANGED" />
97 <data android:scheme="package" />
98 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070099 </receiver>
Dmitri Plotnikov53fac8f2010-08-16 19:42:29 -0700100
101 <receiver android:name="LocaleChangeReceiver">
102 <intent-filter>
103 <action android:name="android.intent.action.LOCALE_CHANGED"/>
104 </intent-filter>
105 </receiver>
Debashish Chatterjeec6eb4fe2011-07-28 12:23:22 +0100106
107 <service android:name="VoicemailCleanupService"/>
Makoto Onuki8a6e02a2012-07-18 16:13:23 -0700108
109 <activity android:name=".debug.ContactsDumpActivity"
110 android:label="@string/debug_dump_title"
111 android:theme="@android:style/Theme.Holo.Dialog"
112 >
113 <intent-filter>
114 <action android:name="com.android.providers.contacts.DUMP_DATABASE"/>
115 <category android:name="android.intent.category.DEFAULT"/>
116 </intent-filter>
117 </activity>
118
Makoto Onuki623659e2012-08-13 17:56:25 -0700119 <provider android:name=".debug.DumpFileProvider"
120 android:authorities="com.android.contacts.dumpfile"
121 android:exported="true">
122 </provider>
123
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -0800124 </application>
125</manifest>