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
<script src="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
<script src="cordova.js"></script>
Post a Comment for "Why Am I Unable To Get The Contacts From My Phone With Cordova's Contacts API?"