I am facing this issue while submitting the app to the iTunes Connect as
I have tried this links, which were not helpful for me.
Kindly review your thoughts. Thanks!
UDID is deprecated, and it's use is no longer allowed, you must use UUID.
It has drawbacks and benefits compared with UDID.
- (NSString *)uuidString {
// Returns a UUID
CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
NSString *uuidStr = (__bridge_transfer NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuid);
return uuidStr;
}