Commit 59582607 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Fix a build breakage.

Make Bluetooth code use new type instead of old.
parent 19b9dd3e
......@@ -362,9 +362,9 @@ public class BluetoothPbapVcardManager {
// Currently only support Generic Vcard 2.1 and 3.0
int vcardType;
if (vcardType21) {
vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC_UTF8;
} else {
vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC_UTF8;
}
composer = new VCardComposer(mContext, vcardType, true);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment