I have the following code:
<html>
<head>
<title>Contact test</title>
<script type="text/javascript" src="cordova-2.2.0.js"></script>
<script type="text/javascript" src="app/lib/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript" charset="utf-8">
alert('Add Listener');
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
alert('Device is ready');
navigator.contacts.find("*", function(contacts) {
for (var i = 0; i < contacts.length; i++) {
$('body').append('<div>' + contacts[i].displayName + '</div>');
}
}, function(error) {
alert('Contacts.find failed: ' + error);
});
}
</script>
</body>
</html>
My PhoneGap is setup to version 2.2.0. The code is in a zip file with just:
index.html app/lib/jquery.min.js
No cordova-2.2.0.js, no config.xml.
When I test in Ripple, it gives me a list of contacts as expected.
When I deploy the app on my phone (Samsung Galaxy Nexus, running Jelly Bean), it gives me an alert windows saying "Contacts.find failed: JSON error".
It looks like the method "navigator.contacts.find" failed.
At first I thought this is a permissions issue, but when I install the app, I was able to see the app asking for "Your personal information" which contains reading contacts from the phone.
I am wondering what went wrong?