blob: 281f98b5d08f95732a74967f789c01e097705c9e [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
Debashish Chatterjee52e8d242011-06-13 16:20:30 +01006 <permission
7 android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL"
8 android:label="@string/read_write_all_voicemail_label"
9 android:description="@string/read_write_all_voicemail_description"
10 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Flavio Lerda383ebf92011-06-30 21:25:44 +010011 android:protectionLevel="signature"
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010012 />
13
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080014 <uses-permission android:name="android.permission.READ_CONTACTS" />
15 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
16 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Dmitri Plotnikov892a3d92010-08-13 12:25:44 -070017 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
18 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Subir Jhanba6bef4a2012-08-06 18:26:57 -070019 <uses-permission android:name="android.permission.BIND_DIRECTORY_SEARCH" />
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080020
21 <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"
24 android:allowBackup="false">
Evan Millar28f88572009-07-08 14:58:53 -070025
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"
Jeff Hamilton4f864362009-04-23 02:29:07 -050031 android:readPermission="android.permission.READ_CONTACTS"
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070032 android:writePermission="android.permission.WRITE_CONTACTS">
33 <path-permission
Bjorn Bringert6e2b2612010-03-02 16:22:04 +000034 android:pathPrefix="/search_suggest_query"
35 android:readPermission="android.permission.GLOBAL_SEARCH" />
36 <path-permission
37 android:pathPrefix="/search_suggest_shortcut"
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070038 android:readPermission="android.permission.GLOBAL_SEARCH" />
Bjorn Bringert697b72a2010-03-03 10:51:36 +000039 <path-permission
40 android:pathPattern="/contacts/.*/photo"
41 android:readPermission="android.permission.GLOBAL_SEARCH" />
Dianne Hackbornb5b7b172010-09-01 22:55:56 -070042 <grant-uri-permission android:pathPattern=".*" />
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070043 </provider>
44
45 <provider android:name="CallLogProvider"
46 android:authorities="call_log"
47 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070048 android:exported="true"
Daniel Lehmanna9bdc552012-04-05 20:37:33 -070049 android:readPermission="android.permission.READ_CALL_LOG"
50 android:writePermission="android.permission.WRITE_CALL_LOG">
Dmitri Plotnikovc70dc0e2009-07-31 10:07:49 -070051 </provider>
Jeff Sharkeyb6509822009-05-14 18:04:39 -070052
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010053 <provider android:name="VoicemailContentProvider"
54 android:authorities="com.android.voicemail"
55 android:syncable="false" android:multiprocess="false"
Nick Kralevich127a8b82012-07-28 14:17:24 -070056 android:exported="true"
Debashish Chatterjee98a77ec2011-08-03 13:31:25 +010057 android:permission="com.android.voicemail.permission.ADD_VOICEMAIL">
Debashish Chatterjee52e8d242011-06-13 16:20:30 +010058 </provider>
59
Jeff Hamilton71091332010-05-25 22:13:01 -050060 <!-- Handles database upgrades after OTAs, then disables itself -->
61 <receiver android:name="ContactsUpgradeReceiver">
62 <!-- This broadcast is sent after the core system has finished
63 booting, before the home app is launched or BOOT_COMPLETED
64 is sent. -->
65 <intent-filter>
66 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
67 </intent-filter>
68 </receiver>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070069
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070070 <receiver android:name="PackageIntentReceiver">
71 <intent-filter>
72 <action android:name="android.intent.action.PACKAGE_ADDED" />
73 <data android:scheme="package" />
74 </intent-filter>
75 <intent-filter>
76 <action android:name="android.intent.action.PACKAGE_REPLACED" />
77 <data android:scheme="package" />
78 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070079 <intent-filter>
80 <action android:name="android.intent.action.PACKAGE_REMOVED" />
81 <data android:scheme="package" />
82 </intent-filter>
Dmitri Plotnikov72e30032010-08-05 10:53:44 -070083 <intent-filter>
84 <action android:name="android.intent.action.PACKAGE_CHANGED" />
85 <data android:scheme="package" />
86 </intent-filter>
Dmitri Plotnikovd3d812a2010-06-07 14:03:12 -070087 </receiver>
Dmitri Plotnikov53fac8f2010-08-16 19:42:29 -070088
89 <receiver android:name="LocaleChangeReceiver">
90 <intent-filter>
91 <action android:name="android.intent.action.LOCALE_CHANGED"/>
92 </intent-filter>
93 </receiver>
Debashish Chatterjeec6eb4fe2011-07-28 12:23:22 +010094
95 <service android:name="VoicemailCleanupService"/>
Makoto Onuki8a6e02a2012-07-18 16:13:23 -070096
97 <activity android:name=".debug.ContactsDumpActivity"
98 android:label="@string/debug_dump_title"
99 android:theme="@android:style/Theme.Holo.Dialog"
100 >
101 <intent-filter>
102 <action android:name="com.android.providers.contacts.DUMP_DATABASE"/>
103 <category android:name="android.intent.category.DEFAULT"/>
104 </intent-filter>
105 </activity>
106
Makoto Onuki623659e2012-08-13 17:56:25 -0700107 <provider android:name=".debug.DumpFileProvider"
108 android:authorities="com.android.contacts.dumpfile"
109 android:exported="true">
110 </provider>
111
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -0800112 </application>
113</manifest>