Add queries elements for vcard export and photo cropping
Test: launched the app and verified vcard export works
Bug: 154946972
Change-Id: I889a641d670898bc0d9e2d8df3752fefd11fce1b
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d65c9be..546e918 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -680,6 +680,19 @@
<data android:scheme="voicemail" />
</intent>
+ <!-- vcard export -->
+ <intent>
+ <action android:name="android.intent.action.CREATE_DOCUMENT" />
+ <data android:mimeType="text/x-vcard" />
+ <category android:name="android.intent.category.OPENABLE" />
+ </intent>
+
+ <!-- edit contact photo -->
+ <intent>
+ <action android:name="com.android.camera.action.CROP" />
+ <data android:mimeType="image/*" />
+ </intent>
+
</queries>
</manifest>