in my index.js i have:
$(document).on("deviceready", function () {
navigator.splashscreen.hide();
if(window.devextremeaddon) {
window.devextremeaddon.setup();
}
$(document).on("backbutton", function () {
DevExpress.processHardwareBackButton();
});
deviceID(device.uuid);
DevExpress.ui.notify(deviceID() + " as your device id", 'info', 300);
}
});
to get the identity of the device (sample project attached) but the uuid keeps changing with each installation.
IS THERE WAY TO GET THE UDID OF THE DEVICE SINCE THAT IS NOT CHANGING and could be used as identifier?