|
|
|
|
SysIMEI (Function) In french: SysIMEI Returns the IMEI number of an Android phone. Remark: SysSerialNum gets the IMEI number of an Android phone. Caution: This information is available up to Android 9. From Android 10, this information is no longer available: this function causes a fatal error.
IF Val(SysAndroidVersion(sysVersionNumber))<10 THEN // Retrieve the IMEI number of the device Info("The IMEI number of the device is " + SysIMEI("Cellular Line")) END
Syntax <Result>: Character string - IMEI number,
- Empty string ("") if an error occurred.
Remarks The International Mobile Equipment Identity (IMEI) is a number that uniquely identifies each GSM or UMTS mobile devices. This number allows the phone operator to identify the calling mobile device so it can be authorized (or not) to connect. It is used to connect emergency calls without SIM. This number is also useful to ask operators to block a stolen mobile phone. Devices that do not have a SIM card slot do not have an IMEI number (most tablets). For devices with a SIM card, the IMEI number can be retrieved up to Android 9. From Android 10, this information is no longer available. Component: wd270android.aar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|