Having an issue with my Cordova iOS app. I rely on the UUID functionality frequently, but it seems to be malfunctioning. The app gets stuck at the alert that displays it.
onDeviceReady: function() {
alert("On device Ready"); // This is working fine
alert(device.window.uuid); // Does not display this and stops here
app.receivedEvent('deviceready');
},
I also tried:
alert(device.window.uuid);
var pushNotification = window.plugins.pushNotification;