Hey guys, in order to remove contact's photo, which way is correct?
1) to update and set Photo.PHOTO to ""/"NULL" , or
2) to update and set Photo.MIMETYPE to ""/"NULL" or
3) to update and set Data.MIMETYPE to ""/"NULL" ?
I wanted to mention also that I insert photos from my app by the following way:
cr.insert(ContactsContract.Data.CONTENT_URI, photoValues);
Please also tell me "" is better or null? (in updating case)
Thanks a lot.