How to get unqiue id for every device not for every app?

153 Views Asked by At

I want to know one unique id per device but not for per app in one device. I am building one framework where I want to use this device id.

2

There are 2 best solutions below

2
On

get UUID from the iOS device and send it to the server

let uuid = NSUUID().UUIDString.lowercaseString
print(uuid)

Hope this helps !!!

3
On

Just create a unique number by yourself and then store it in the device keychain.