Skip to content Skip to sidebar Skip to footer

Why Am I Unable To Get The Contacts From My Phone With Cordova's Contacts Api?

I'm building a phone app with Phonegap well, actually with Steroids.js which is built on top of Phonegap. Right now, all I want to do is retrieve the list of contact names and numb

Solution 1:

In your above code your cordova.js file is misplaced somewhere. like

<scriptsrc="http://localhost/cordova.js"></script>

You need to copy that cordova.js file into assest/www/ folder (like assest/www/cordova.js)

so it becomes like below in your html file

<scriptsrc="cordova.js"></script>

Post a Comment for "Why Am I Unable To Get The Contacts From My Phone With Cordova's Contacts Api?"