How to Retrieve the Terminal's IMEI Number: Difference between revisions

From wizarPOS
No edit summary
No edit summary
Line 1: Line 1:
The code snippet is as follows:  
This guide outlines the process for obtaining the IMEI (International Mobile Equipment Identity) number of your terminal using a specific code snippet.
=== Code Snippet for IMEI Retrieval ===
Below is the code snippet necessary for retrieving the IMEI number:
   TelephonyManager telephonyManager =
   TelephonyManager telephonyManager =
                 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
                 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
   String imei = telephonyManager.getImei(slot index);
   String imei = telephonyManager.getImei(slot index);
Note: in Q2 Android 12, use above code to get IMEI, targetSDK version should <=28.
=== Important Note for Q2 Devices with Android 12 ===
When using this method on Q2 devices that operate on Android 12, it is important to note that the targetSDK version should be 28 or lower. This requirement is specific to Q2 devices with Android 12 and may not apply to other models or operating system versions.

Revision as of 21:50, 3 January 2024

This guide outlines the process for obtaining the IMEI (International Mobile Equipment Identity) number of your terminal using a specific code snippet.

Code Snippet for IMEI Retrieval

Below is the code snippet necessary for retrieving the IMEI number:

 TelephonyManager telephonyManager =
               (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
 String imei = telephonyManager.getImei(slot index);

Important Note for Q2 Devices with Android 12

When using this method on Q2 devices that operate on Android 12, it is important to note that the targetSDK version should be 28 or lower. This requirement is specific to Q2 devices with Android 12 and may not apply to other models or operating system versions.