I'm trying to get the MAC address for the network adapter of the user's device in an Adobe AIR Application for Android and iOS (iPad 2).
In Android it works correctly, but in iOS it doesn't. This is the code I'm using:
var vNetworkInterfaces:Vector.<NetworkInterface> = NetworkInfo.networkInfo.findInterfaces();
for each (var networkInterface:NetworkInterface in vNetworkInterfaces) {
trace(networkInterface.hardwareAddress);
}
This works in Android, but in iOS I get this when trying to run findInterfaces():
Error #1009: Cannot access a property or method of a null object reference.
So it seems networkInfo.findInterfaces() is not implemented in iOS. I tried getting the value of:
NetworkInfo.isSupported
And the value of that is true in Android but false in the iPad 2. So it seems NetworkInfo is not supported in iOS
Is there any other way in iOS to get a unique identifier for the device? (it doesn't have to be the MAC; I just want to uniquely identify the user's device)