I'm currently working on a phonegap/cordova 3.0 application with some friends which is supposed to have functionality which allows it to store reminders for future events and remind users when these events are approaching. I have installed the localNotification plugin (by Sebastián Katzer) in the phonegap app via the command line. I have cut my code down to a minimum and when it is run on an emulated device on my computer it works fine (Its just supposed to make a notification appear in the notifications tray at the moment) but when I install the app on a phone it doesn't work (it doesn't throw any errors either). Here's my code I'd appreciate if anyone could give me any help/advice!
<html>
<head>
<title>Test Storing Events</title>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script>
function addEvent()
{
window.plugin.notification.local.add({ message: 'Great app!' });
}
</script>
</head>
<body>
<h1>Apache Cordova</h1>
<input type="button" onclick="addEvent()" style="width: 100px; height: 100px;" value="Click me">
</body>