Questions tagged [imei]

International Mobile Equipment Identity a number, usually unique, to identify 3GPP (i.e., GSM, UMTS and LTE) and iDEN mobile phones, as well as some satellite phones.

From http://en.wikipedia.org/wiki/International_Mobile_Equipment_Identity

It is usually found printed inside the battery compartment of the phone. It can also be displayed on the screen of the phone by entering *#06# into the keypad on most phones.

The IMEI number is used by a GSM network to identify valid devices and therefore can be used for stopping a stolen phone from accessing that network. For example, if a mobile phone is stolen, the owner can call his or her network provider and instruct them to "blacklist" the phone using its IMEI number. This renders the phone useless on that network and sometimes other networks too, whether or not the phone's SIM is changed.

The IMEI is only used for identifying the device and has no permanent or semi-permanent relation to the subscriber. Instead, the subscriber is identified by transmission of an IMSI number, which is stored on a SIM card that can (in theory) be transferred to any handset. However, many network and security features are enabled by knowing the current device being used by a subscriber.

283 questions
4
votes
1 answer

Python: Using a filter to find IMEI of a device?

Summary I am using an MT4000 telemetry device to broadcast data over port 30000, then a python udp listener to receive this data and insert it into a database. A PHP page then reads that data and displays the data, in JSON format currently. The…
Ed Prince
  • 714
  • 2
  • 14
  • 31
4
votes
5 answers

Get IMEI for iOS7 programmatically

in XCode 4.6, iOS 6.1, we use CoreTelephony to obtain IMEI, the same way mentioned in get IMEI on iPhone with CoreTelephony? question, but after switching to iOS7 and XCode 5 it doesn't work anymore. My system considers IMEI as an unbreakable way to…
4
votes
2 answers

Write IMEI on unrooted Android Phone via Engineer Mode

yesterday I reset my phone to factory definitions and after it rebooted IMEI was missing (invalid IMEI). I tried to access the Engineer Mode -> GPRS to write it again, but there's no the button "Write" to add IMEI. PS: My phone is not rooted, can…
Jacob Zucula
  • 41
  • 1
  • 1
  • 2
4
votes
2 answers

How to get IMEI number in Blackberry 10 device using webworks?

I am working on Blackberry 10 App using webworks and I want to get the device IMEI number using webworks. I did not find any solution to get IMEI number on internet.
user1752633
4
votes
4 answers

Can i prevent an application from being installed in a particluar device in android?

I have an enterprise app which should not be installed in all mobiles. I have 50 mobiles with their IMEI info, my application should be installed only in these 50 mobiles. A user should not be able to install my app even if he gets the apk. I have…
Anirudh
  • 2,767
  • 5
  • 69
  • 119
3
votes
0 answers

How to get Unique ID of Android Device?

Possible Duplicate: Is there a unique Android device ID? I'm developing an application in which i want to map username with their mobile's unique id. Is there any method from which I get Unique ID for device. I had go through getting IMEI no, but…
Nirav Bhandari
  • 4,550
  • 6
  • 32
  • 59
3
votes
2 answers

How to get IMEI using adb command on Android 13?

There is a question about Getting IMEI number using ADB commands Android 12. adb root adb shell "service call iphonesubinfo 1 i64 0 | cut -c 52-66 | tr -d '.[:space:]'" I tested the method, and it works well on Android 12. But from android 13 on,…
James Feng
  • 184
  • 1
  • 14
3
votes
0 answers

Android API 29 Permission Error READ_PRIVILEGED_PHONE_STATE

I Have created Android App. And Before Api 29 I was get Device IMEI Id. Now Api 29 my methods return null. TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); if (tm.getDeviceId() != null) { …
3
votes
2 answers

Getting multiple imei number in all android device

I have used java reflection but it does not give methods for all types of device like HUAWEI Y635-L21. Basically I need to get the IMEI of devices below API level 23. Is there any way to find multiple IMEI numbers on a device, which will work for…
Shadman Sakib
  • 219
  • 2
  • 10
3
votes
1 answer

How can I get the IMEI no. of my device through ionic?

I am unable to get IMEI number of my device from my ionic application (android). I tried several ways to do that but failed. How may i suppose to get IMEI number of my device through ionic??
3
votes
0 answers

How to Convert MEID-HEX or MEID-DEC to an IMEI?

I am trying to find an algorithm where I can convert a given MEID number to IMEI. Is this possible if so please someone help me.
maddyeng
  • 51
  • 1
  • 9
3
votes
2 answers

Does a dual sim android phone always return same IMEI when using android.telephony.TelephonyManager.getDeviceId()

I have seen a lot of posts which says android documentation does not support dual sim phones. In my case I want to identify the device so that i could store its IMEI on my server. But because phone might have dual sims, will using the code…
Kshitij
  • 31
  • 1
  • 7
3
votes
1 answer

How to get IMEI number in blackberry 10 native

I am trying to get the Default information of Hardware device in blackberry 10 native, So basically i am trying to access IMEI or SERIAL NUMBER of the device. I havetried using following code main.cpp #include "applicationui.hpp" #include…
InnocentKiller
  • 5,234
  • 7
  • 36
  • 84
3
votes
4 answers

Get operator details for dual SIM android phone

I am working on an app where I need details of user's SIM his phone number, imei number and operator . so far I have achieved his IMEI's numbers refering this answer, is his device single sim or dual SIM. How do I get his number of both the SIM …
onkar
  • 4,427
  • 10
  • 52
  • 89
3
votes
2 answers

Get IMEI of both sim slots in dual sim android mobile devices

I am creating an application for dual sim mobile phones. The application should be able to detect the sim through which the user is making a call. It can be outgoing or incoming call. I have tried to get both the IMEI nos of the device using this…
kittu88
  • 2,451
  • 5
  • 40
  • 80
1 2
3
18 19