I have to provide the unique identifier of my device to the server in a client app.
Around StackOverflow it's been recommended commonly to use the device's mac address, since [[UIDevice currentDevice] uniqueIdentifier]
property is deprecated started from iOS 5.
So, when I make attempt to retrieve a device's mac address following the instructions, provided in the answers around SO, I get the same address for both my devices, which is obviously wrong: 02:00:00:00:00:00.
Checked the code many times, but it seems to be correct. What could cause the problem of this sort?