iOS Question Get the IMEI of a phone

gudino jose luis

Active Member
Licensed User
Longtime User
(Solved)

The unique identifier in iOS App. "UDID" is replaced in ios 7 with "identifierForVendor"

Dim device As NativeObject
device = device.Initialize("UIDevice").RunMethod("currentDevice", Null)
Log(device.GetField("identifierForVendor"))
 
Upvote 0

gudino jose luis

Active Member
Licensed User
Longtime User
Hi,
the identifier "uniqueIdentifier" is obsolete, we must use "identifierForVendor"
See example:

Dim device As NativeObject
device = device.Initialize("UIDevice").RunMethod("currentDevice", Null)
Log(device.GetField("identifierForVendor"))
 
Upvote 0

TRCTE

Member
Licensed User
Longtime User
Hi,
the identifier "uniqueIdentifier" is obsolete, we must use "identifierForVendor"
See example:

Dim device As NativeObject
device = device.Initialize("UIDevice").RunMethod("currentDevice", Null)
Log(device.GetField("identifierForVendor"))


I run your code but doesn't get the IMEI.
 
Upvote 0

Eumel

Active Member
Licensed User
Longtime User
All installed apps from one developer will have the same identifierForVendor.
If you delete all apps from this developer und then reinstall them, the identifierForVendor change.
 
Upvote 0
Top