Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e001fdc2 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Contacts: Use VCF 4.0 as default export type

Change-Id: I2fca0d47196570d697a2e5968a3a0114274c35b4
parent 324a57fb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@
        android:key="exportToVcfType"
        android:entries="@array/menu_vcf_export_types"
        android:entryValues="@array/menu_vcf_export_values"
        android:defaultValue="v21_generic"
        android:defaultValue="v40_generic"
        android:title="@string/menu_export_type_title"/>

    <Preference
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ public class ExportProcessor extends ProcessorBase {
            final SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(
                    mService.getApplicationContext());
            final String defVcfType = pref.getString(KEY_EXPORT_TYPE,
                    VCARD_TYPE_V21_GENERIC_STR);
                    VCARD_TYPE_V40_GENERIC_STR);
            final int vcardType = sVCardTypeMap.get(defVcfType);

            composer = new VCardComposer(mService, vcardType, true);