Return the next alarm set in the clock app on android.
##Install with plugman
plugman install --platform android --project <directory> --plugin https://github.com/guillaumewuip/cordova-AlarmPlugin
@see Using Plugman to Manage Plugins
##Somewhere in Javascript
window.plugins.AlarmPlugin.getAlarm(
function (alarm) {
console.log('Alarm : ', alarm);
},
function () {
console.log('error');
}
);