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" |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 3 | > |
| 4 | |
| 5 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 6 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 7 | |
| 8 | <application |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 9 | android:label="ContactsProvider2" |
| 10 | > |
| 11 | <provider android:name="ContactsProvider2" |
| 12 | android:authorities="com.android.contacts" |
| 13 | android:syncable="false" |
| 14 | android:multiprocess="false" |
| 15 | android:readPermission="android.permission.READ_CONTACTS" |
| 16 | android:writePermission="android.permission.WRITE_CONTACTS" |
| 17 | /> |
| 18 | </application> |
| 19 | </manifest> |