1

In more recent iOS versions you are not allowed to use iOS UUID anymore. Is there any way to uniquely identify an iOS device using any other alternative?

From what I have noticed, Facebook app will identify your account even after you delete the app and reinstall it. How is that possible?

Would using Mac address of the iOS device work?

Wain
  • 118,658
  • 15
  • 128
  • 151
Catalin Craciun
  • 284
  • 3
  • 13

1 Answers1

1

The closest thing we have to the uuid is the vendor id now

Fonix
  • 11,447
  • 3
  • 45
  • 74
  • 2
    iOS11+ new API called `DeviceCheck` can uniquely identify a device, check answer: https://stackoverflow.com/questions/24753537/unique-identification-of-ios-device-for-ios-7-0-and-above/45711623#45711623 – Muhammad Umair Aug 16 '17 at 10:57
  • @IceCode awesome – Fonix Aug 16 '17 at 12:36