Reputation: 818
I have checked online that getting IMEI must use private methods and thus violate the agreement and might be rejected. What I need is not the IMEI number, but any unique identifier of the phone, it can be meaning less or do
Upvotes: 1
Views: 1163
Reputation: 42522
As of iOS 5.0 this property is deprecated and Apple advises that you create your own unique app id:
Do not use the uniqueIdentifier property. To create a unique identifier specific to your app, you can call the CFUUIDCreate function to create a UUID, and write it to the defaults database using the NSUserDefaults class.
Upvotes: 0