@JackStone wrote:
I seem to be having trouble saving an image to the user’s contacts with the Cordova Contacts plugin on Android. Here is my code:
var contact = navigator.contacts.create(); // data.photo is a valid base64-encoded string. contact.photos[0] = { "type": "base64", "value": data.photo }; contact.save(function() { alert(“Contact saved.”); }This works perfectly on iOS but I can’t save an image on Android no matter what I try. The
data.photovalue is a valid base64-encoded string that WILL show up as an image when pasted into a URL bar. Any advice?
Posts: 1
Participants: 1