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" /> |
| 10 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 11 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.cp" /> |
| 12 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_READ" /> |
| 13 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
| 14 | |
| 15 | <application android:process="android.process.acore" |
Evan Millar | 28f8857 | 2009-07-08 14:58:53 -0700 | [diff] [blame^] | 16 | android:label="@string/app_label" |
| 17 | android:icon="@drawable/app_icon"> |
| 18 | |
| 19 | <provider android:name="ContactsProvider" |
| 20 | android:authorities="contacts;call_log" |
| 21 | android:syncable="false" android:multiprocess="false" |
| 22 | android:readPermission="android.permission.READ_CONTACTS" |
| 23 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
Jeff Sharkey | b650982 | 2009-05-14 18:04:39 -0700 | [diff] [blame] | 24 | |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 25 | <provider android:name="ContactsProvider2" |
| 26 | android:authorities="com.android.contacts" |
| 27 | android:syncable="false" |
| 28 | android:multiprocess="false" |
| 29 | android:readPermission="android.permission.READ_CONTACTS" |
Jeff Sharkey | b650982 | 2009-05-14 18:04:39 -0700 | [diff] [blame] | 30 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
| 31 | |
| 32 | <!-- TODO: create permissions for social data --> |
| 33 | <provider android:name="SocialProvider" |
| 34 | android:authorities="com.android.social" |
| 35 | android:syncable="false" |
| 36 | android:multiprocess="false" |
| 37 | android:readPermission="android.permission.READ_CONTACTS" |
| 38 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 39 | </application> |
| 40 | </manifest> |