Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame^] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.providers.contacts2" |
| 3 | android:sharedUserId="android.uid.shared" |
| 4 | > |
| 5 | |
| 6 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 7 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 8 | |
| 9 | <application |
| 10 | android:process="android.process.acore" |
| 11 | android:label="ContactsProvider2" |
| 12 | > |
| 13 | <provider android:name="ContactsProvider2" |
| 14 | android:authorities="com.android.contacts" |
| 15 | android:syncable="false" |
| 16 | android:multiprocess="false" |
| 17 | android:readPermission="android.permission.READ_CONTACTS" |
| 18 | android:writePermission="android.permission.WRITE_CONTACTS" |
| 19 | /> |
| 20 | </application> |
| 21 | </manifest> |