Please, do not mark this as a duplicate. This question is about Simperium and the way it deals with uniqueIdentifier and identifierForVendor.
Simperium is still using
[[UIDevice currentDevice] uniqueIdentifier]
in Simperium.m. This has been deprecated and Apple is now completely rejecting apps that use that call.
I am experimenting with
[[[UIDevice] currentDevice] identifierForVendor] UUIDString];
but I am not sure if there would be any problem doing so.
What do you say?
Best,