diff options
author | Jay Shrauner <shrauner@google.com> | 2014-09-03 11:48:48 -0700 |
---|---|---|
committer | Jay Shrauner <shrauner@google.com> | 2014-09-03 16:08:57 -0700 |
commit | b2ace69ba704ac9018d531eb7d0ff89c379380b0 (patch) | |
tree | 8827c75490a6fe7bbbb18514c9cbf680d7c532c1 | |
parent | d36fa13013a66e435df223602f3975b2892f4589 (diff) |
Remove vcard support
Vcard support was left in both Dialer and Contacts as a legacy from
splitting the two apps apart. Leave in Contacts and remove from Dialer.
Bug:17357579
Change-Id: I536960c9882a30097e3be6976db23042d0f5e0ea
-rw-r--r-- | AndroidManifest.xml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 92d6d9465..370a952bc 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -198,24 +198,11 @@ <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity" android:configChanges="orientation|screenSize|keyboardHidden" android:theme="@style/BackgroundOnlyTheme"> - <intent-filter> - <action android:name="android.intent.action.VIEW"/> - <data android:mimeType="text/directory"/> - <data android:mimeType="text/vcard"/> - <data android:mimeType="text/x-vcard"/> - <category android:name="android.intent.category.DEFAULT"/> - </intent-filter> </activity> <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity" android:configChanges="orientation|screenSize|keyboardHidden" android:theme="@style/BackgroundOnlyTheme"> - <intent-filter> - <action android:name="android.nfc.action.NDEF_DISCOVERED"/> - <data android:mimeType="text/vcard"/> - <data android:mimeType="text/x-vcard"/> - <category android:name="android.intent.category.DEFAULT"/> - </intent-filter> </activity> <activity android:name="com.android.contacts.common.vcard.CancelActivity" |