Hello,
I am using the following code to get the IMEI from the device found in this forum:
As much as i need a unique identifier, it seems that my iPhone's IMEI doesn't change while my iPad's keep changing...
Any idea why? I need some sort of unique identifier...
Y.
I am using the following code to get the IMEI from the device found in this forum:
B4X:
Sub GetIMEI As String
' get device unique identifier
Dim device As NativeObject
device = device.Initialize("UIDevice").RunMethod("currentDevice", Null)
Dim name As String = device.GetField("identifierForVendor").AsString
Return name
End Sub
As much as i need a unique identifier, it seems that my iPhone's IMEI doesn't change while my iPad's keep changing...
Any idea why? I need some sort of unique identifier...
Y.