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

From wizarPOS
No edit summary
No edit summary
 
Line 1: Line 1:
This guide outlines the process for obtaining the IMEI (International Mobile Equipment Identity) number of your terminal using a specific code snippet.
{{Migrating|https://smartpossdk.gitbook.io/cloudpossdk/faq/sim-ethenet-wifi/retrieve-terminal-imei-number}}
=== Code Snippet for IMEI Retrieval ===
Below is the code snippet necessary for retrieving the IMEI number:
<syntaxhighlight lang="java">
  TelephonyManager telephonyManager =
                (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
  String imei = telephonyManager.getImei(slot index);
</syntaxhighlight >
=== 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.

Latest revision as of 09:05, 7 April 2024

Please visit new link of same subject:

https://smartpossdk.gitbook.io/cloudpossdk/faq/sim-ethenet-wifi/retrieve-terminal-imei-number

We're making a move! Our site's content is migrating to a new URL, to provide you with an enhanced browsing experience. Please update your bookmarks accordingly. Thank you for your continuous support!