The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.providers.contacts" |
| 3 | android:sharedUserId="android.uid.shared"> |
| 4 | |
| 5 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 6 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 7 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 8 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
| 9 | <uses-permission android:name="android.permission.INTERNET" /> |
Fred Quintana | d9d4c0b | 2009-07-22 20:02:11 -0700 | [diff] [blame] | 10 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 11 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 12 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.cp" /> |
| 13 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_READ" /> |
| 14 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
| 15 | |
| 16 | <application android:process="android.process.acore" |
Evan Millar | 28f8857 | 2009-07-08 14:58:53 -0700 | [diff] [blame] | 17 | android:label="@string/app_label" |
| 18 | android:icon="@drawable/app_icon"> |
| 19 | |
| 20 | <provider android:name="ContactsProvider" |
| 21 | android:authorities="contacts;call_log" |
| 22 | android:syncable="false" android:multiprocess="false" |
| 23 | android:readPermission="android.permission.READ_CONTACTS" |
Dianne Hackborn | dd22dec | 2009-07-09 12:36:45 -0700 | [diff] [blame] | 24 | android:writePermission="android.permission.WRITE_CONTACTS"> |
Dianne Hackborn | c885d11 | 2009-07-08 15:01:42 -0700 | [diff] [blame] | 25 | <path-permission android:path="/people/search_suggest_query" |
| 26 | android:readPermission="android.permission.GLOBAL_SEARCH" /> |
| 27 | </provider> |
Jeff Sharkey | b650982 | 2009-05-14 18:04:39 -0700 | [diff] [blame] | 28 | |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 29 | <provider android:name="ContactsProvider2" |
| 30 | android:authorities="com.android.contacts" |
| 31 | android:syncable="false" |
| 32 | android:multiprocess="false" |
| 33 | android:readPermission="android.permission.READ_CONTACTS" |
Jeff Sharkey | b650982 | 2009-05-14 18:04:39 -0700 | [diff] [blame] | 34 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
| 35 | |
| 36 | <!-- TODO: create permissions for social data --> |
| 37 | <provider android:name="SocialProvider" |
| 38 | android:authorities="com.android.social" |
| 39 | android:syncable="false" |
| 40 | android:multiprocess="false" |
| 41 | android:readPermission="android.permission.READ_CONTACTS" |
| 42 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 43 | </application> |
| 44 | </manifest> |