Open pvdochtend opened 8 years ago
I received the error on line 105 of BPXLUUIDHandler.m:
return [[UIDevice currentDevice] uniqueIdentifier];
To let this work in a simulator, change the code to:
NSUUID *identifierForVendor = [[UIDevice currentDevice] identifierForVendor]; return [identifierForVendor UUIDString];
That worked for me!
I received the error on line 105 of BPXLUUIDHandler.m:
To let this work in a simulator, change the code to:
That worked for me!