First pass at new ContactsProvider.
It's very basic right now, but shows the general layout that I'm
thinking of for the schema and how the data types are defined.
The test app just reads the display names and puts them in a list,
not very useful since you have to add data with the sqlite3 tool
for now.
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..86f73d6
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.providers.contacts2"
+ android:sharedUserId="android.uid.shared"
+>
+
+ <uses-permission android:name="android.permission.READ_CONTACTS" />
+ <uses-permission android:name="android.permission.WRITE_CONTACTS" />
+
+ <application
+ android:process="android.process.acore"
+ android:label="ContactsProvider2"
+ >
+ <provider android:name="ContactsProvider2"
+ android:authorities="com.android.contacts"
+ android:syncable="false"
+ android:multiprocess="false"
+ android:readPermission="android.permission.READ_CONTACTS"
+ android:writePermission="android.permission.WRITE_CONTACTS"
+ />
+ </application>
+</manifest>