[ios] Fixed uniqueId to pass AppStore validation

This commit is contained in:
Alex Zolotarev 2013-05-17 14:03:57 -07:00 committed by Alex Zolotarev
parent caf1fac3d4
commit 8d753227a7

View file

@ -96,7 +96,10 @@ int Platform::PreCachingDepth() const
static string GetDeviceUid()
{
NSString * uid = [[UIDevice currentDevice] uniqueIdentifier];
NSString * uid = @"";
UIDevice * device = [UIDevice currentDevice];
if (device.systemVersion.floatValue >= 6.0 && device.identifierForVendor)
uid = [device.identifierForVendor UUIDString];
return [uid UTF8String];
}