Skip to content Skip to sidebar Skip to footer

Android Contentprovider Applybatch Not Saving All Contact Data

Im trying to save a contact with data in all available fields. But for some reason not all the data gets saved. Only fields that seem to work are: StructuredName Phone Im Organiza

Solution 1:

It's actually just a tiny but important typo! You use withValueBackreference() only for those types which function - you use withValue() for those others. No wonder, those do not work. Just use withValueBackReference() here as well and all will work as expected!

Solution 2:

There is an impeccable explanation about withValueBackreference and withValue.

Post a Comment for "Android Contentprovider Applybatch Not Saving All Contact Data"