I have an application that export the phone contacts to the sdcard in a vcf format.
I am able to get all the vcards and save them in a vcf format(looping on every ContactsContract.Contacts.LOOKUP_KEY until the cursor count -1 is reached in order to put the vcard concerning each contact in a AssetFileDescriptor and then converted to an FileInputStream using getContentResolver().openAssetFileDescriptor(....) ). The problem is that now I need to save the vcards without the photo.
So any idea how to get the contacts without their photo in order to save them on the external storage in a vcf format?
Thanks in advance