forked from organicmaps/organicmaps
[ios] Fixed uniqueId to pass AppStore validation
This commit is contained in:
parent
caf1fac3d4
commit
8d753227a7
1 changed files with 4 additions and 1 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue