Actually the requirement is I have to create the Unique identifier for our iOS app.
This id should be still unique in the following scenarios.
- App is killed and restarted again?
- Data is cleared from settings and restarted again?
- App is re-installed again?
- OS is updated? Ex: iOS 6 to 7
- Phone is factory reset?
So now there is no use of UDID
which has been deprecated.
I am planing to use "device macaddress + app bundleidetifier" with md5
encryption.
Is this correct approach ? If NO kindly give me you suggestions.