Cordova-IOS How to get iPhone UUID or alternative identifier -
i working on cordova based application , need identify device security reasons before send requests server side
but may know apple forbidden way identify device .
i have tried many plugins seems working on android , on ios identify app not device tried native objective c code
[[[uidevice currentdevice] identifierforvendor] uuidstring]
but changed on removing app , reinstall
any suggestion on how identify iphone either udid or imei or other alternative
why not use standard cordova-plugin-device
has device.uuid
method , works on android , ios?
see: https://github.com/apache/cordova-plugin-device#deviceuuid
get device's universally unique identifier (uuid).
var string = device.uuid;
Comments
Post a Comment