I need a device identification mechanism no matter what OS is running on the device? Does cocos2d-x 3.0 has a function that returns device info which contains device ID?
I dont think there is a built in mechanism, you would need to use the OS to help you with this. For example, iOS you can obtain device hardware by using something like: [[UIDevice currentDevice] uniqueIdentifier]
Got you, thank you very much!