ContactPicker
ContactPicker copied to clipboard
ignores other phone numbers of same type
if contact has more than 1 phone number with same type (f.e. mobile), only first one will be selected. This is probably because of this: JSONObject phones = new JSONObject(); phones.put(type + "", phoneNumber); Should be phones.put(phoneNumber, type + ""); phoneNumber as a key, not type.
I got your point and working on it.