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
2
votes
2 answers

IMEI not passing Luhn Checksum

I have the following code for validating IMEIs (not SV) public static boolean luhnc(char[] digits) { int sum = 0, s = 0; for (int i = 0; i < digits.length - 1; i += 2) { s = (digits[i+1] - '0') * 2; sum += (s > 10 ? s - 9 :…
TheRealChx101
  • 1,468
  • 21
  • 38
2
votes
0 answers

iPhone4 change IMEI?

Can I change the IMEI of an iPhone4? It is just a hypothetical question, I am preparing for a little presentation to show off how easy it is to "hide" yourselves from anyone unwanted (even the carrier) and how people use this to do not pay for…
fonix232
  • 2,132
  • 6
  • 39
  • 69
2
votes
1 answer

TelephonyManager throws Null Pointer Exception in MainActivity

I want to declare TelephonyManager in MainActivity not OnCreate. In OnCreate there is no problem but when I use in MainActivity it gives a null pointer exception. Structure of my code is needed to declare TelephonyManager in MainActivity. public…
2
votes
1 answer

android get imei in cc/c++ for ndk/JNI

I would try to get the imei of a device in C/C++ (using ndk) and retrieve the result with JNI. const char *res = exec_get_out("service call iphonesubinfo 3"); Works in shell, but does not in my application I have the READ_PHONE_STATE permission…
sakdoss
  • 21
  • 1
  • 2
2
votes
1 answer

Looking for a unique device Id that doesn't need permissions to request it

Is there any unique Id for android device that doesn't need permissions to access it? I'm looking for something cannot be changed in normal cases (not ROOTED devices) so I can use it to check users who installed the application and lock the user to…
Yazan Allahham
  • 174
  • 2
  • 17
2
votes
2 answers

A unique identifier for cell phone other than IMEI or IMSI?

I'd like to have an unique identifier for a cell phone. Since there is not a particular way to find IMEI or IMSI on every mobile, I want to know if there are other ways to find an unique identifier for a cellphone. Can anyone suggest a way?
Hasnain
  • 59
  • 2
  • 11
2
votes
2 answers

How do I find imei number in windows 8.1 phone programmatically?

I am trying to find imei number in windows phone 8.1 application programmatically and i have referred many links but cannot find anything clear.I am unable to find tapi.dll for windows 8.1 phone application so is there any alternative for tapi…
Tiya
  • 21
  • 2
2
votes
1 answer

How to Get IMEI on Android 5 in firemonkey?

I try to get IMEI on android device and i can do this on android 4.2 successfully but my written code does not work on android 5 and later how do get IMEI on android 5 in firemonkey?
NiliDelphi
  • 159
  • 1
  • 5
  • 13
2
votes
1 answer

How do you get IMEI on a Verizon (CDMA vioice / LTE Data) device?

getDeviceId() returns the 14 digit MEID on Verizon phones (because it is a CDMA voice device). Is there a programmatic way to get the 15 digit IMEI (as it is listed in the Settings menu) instead?
gsysko
  • 988
  • 1
  • 8
  • 19
2
votes
1 answer

Find IMEI number of connected device

I am developing a windows desktop application for copying proprietary data to devices, mobile and pad only. For doing that we are asked to use IMEI number of the device to uniquely identify it. When the customer connects the device, my application…
Prasanna
  • 23
  • 1
  • 6
2
votes
0 answers

How to access DeviceId (IMEI) from Android using C++ Builder XE7/FMX?

The following video tutorial was a good starting point (using Vibrator as an example rather than DeviceId), but there were a few more details needing attention to transpose to C++. I'm just getting started with Stack Exchange. Hopefully this…
Tim D
  • 650
  • 1
  • 12
  • 18
2
votes
4 answers

Restrict application to install only on specific imei android devices

I have developed an education app for specific people. I want that my app only get installed on their devices (on specific IMEI devices). I know that, After application installed, my app can verify those IMEI numbers. But as we all know that, we can…
RStar
  • 100
  • 2
  • 7
2
votes
2 answers

How to get Nexus 7 serial number programmatically?

We've developed an app that needs to identify every device uniquely. We first thought of using IMEI and we're obtaining it using the TelefonyManager's getDeviceId() method. But one user reported that the app doesn't work and it seems we weren't able…
2
votes
2 answers

How to get device IMEI number programmatically using xcode to phonegap?

I would like to getting the device imei number and send it to the phonegap html page. How should we do? In phonegap android we will get the imei number from java file and send it into javascript file. The same way, how we will do in the iOS?
Lavanya
  • 621
  • 4
  • 15
  • 28
2
votes
3 answers

How to get IMEI on iPhone 5

I'm develop application for jailbroken iOS devices. I use https://github.com/erica/uidevice-extension/blob/master/UIDevice-IOKitExtensions.m to get IMEI, but on iPhone 5 this solution does not work(return empty string). Is there any way to get IMEI…
InViZz
  • 109
  • 1
  • 4
  • 12