I'm finding that the UUID I get is different depending on whether the app is directly installed by xcode (which I do during development) or through testflight.
let uuidstring = UIDevice.current.identifierForVendor!.uuidString
Is it possible to get a UUID that is the same in both cases?
Ideally a UUID that is truly a unique device identifier, and doesn't change if the app is removed and added, which seems to change the UUID currently.