Gets list filtering and PICK actions working on the a-z list.
Intents with action "android.intent.action.PICK" should now work with
the following mimetypes:
vnd.android.cursor.dir/person_aggregate
vnd.android.cursor.dir/phone
vnd.android.cursor.dir/postal-address
List filtering works for the main a-z list and for the phone picking list.
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 14e5fb0..809c82a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -218,6 +218,7 @@
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/person_aggregate" />
<data android:mimeType="vnd.android.cursor.dir/person" />
<data android:mimeType="vnd.android.cursor.dir/phone" />
<data android:mimeType="vnd.android.cursor.dir/postal-address" />