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
3
votes
0 answers

How to check iPhone activation status programmatically

I recently used the website iphoneimei.info, and I was wondering if there is any way to obtain any or all of the following using Objective-C (with the IMEI and Serial Numbers): The iPhone's Activation status First and/or Most Recent activation…
iphonedev7
  • 295
  • 1
  • 7
  • 17
3
votes
2 answers

How to find out whether android device has cellular radio module?

How can I find out for sure that device really has gsm, cdma or other cellular network equipment (not just WiFi)? I don't want to check current connected network state, because device can be offline in the moment. And I don't want to check device id…
Tertium
  • 6,049
  • 3
  • 30
  • 51
3
votes
2 answers

IMEI as a fallback of UDID, is it a good idea?

Another question about UDID ... UDID is a unique identifier for the phone, but the IMEI number is also a unique identifier. I understand that a device can have different MAC adress, but the IMEI is unique. So my question is should I use IMEI as a…
user509981
2
votes
2 answers

Uniqely identify each device, accessing sencha web applicaiton

I am developing a sencha based application for iPhone & Android. As a S/W requirement, i need to identify device (on the basis of IMEI or MAC address) accessing the service. e.g. If a user of iPhone visits my sencha-web-app first time, he will need…
Khaled Javeed
  • 355
  • 4
  • 19
2
votes
2 answers

How can we validate IMEI Number after Android version 10?

I need to validate IMEI number, is their any mechanism for validating the input IMEI? Can we get status of validation in true or false ?
sarjeet singh
  • 461
  • 4
  • 10
2
votes
1 answer

How to uniquely identify a downloaded Java ME app

Possible Duplicate: A unique identifier for cell phone other than IMEI or IMSI? I have the following problem: I want to offer a Java ME app for download, which can obviously be installed on a mobile phone (different manufacturers and models) and…
heapifyman
  • 21
  • 1
2
votes
1 answer

Extracting IMEI from phone on Android 10 via Knox SDK

Since Android 10 (API 29), there are no more possibilities to extract IMEI from the phone programmatically by Android API. Is there any way via Samsung Knox SDK API to extract phone IMEI for Android 10? As android permission…
KarmaObserver
  • 121
  • 1
  • 4
2
votes
1 answer

Privacy changes in Android 10 for IMEI

I came to know the privacy changes for Android 10 and I'm quite clear that third-party apps won't be able to get IMEI now. But one thing from documentation is creating confusion for me. They state If your app targets Android 9 (API level 28) or…
Bilal
  • 1,034
  • 11
  • 23
2
votes
0 answers

I need to get the imei number of my android device programmatically even when its connected to a cdma network

I already used telephonymanager.getdeviceid() but this gives the meid number when the device is connected to a cdma network. Can anyone help?
2
votes
1 answer

Get Permanent Unique ID for android device

I have an application in which I want to identify the device with Unique ID, I have tried multiple solutions but doing after phone reset unique ID gets changed(like ANDROID_ID) I have used below StackOverflow links which are not usable now. Is there…
Amin Pinjari
  • 2,129
  • 3
  • 25
  • 53
2
votes
0 answers

Serial number or IMEI got changed in android

We are using the Serial number and IMEI in an application and we have observed that there are many Pixel, Samsung and Motorola devices where either the serial number or IMEI has been changed. What could be reason ? Due to OS update ? Access this…
Hardik Bambhania
  • 1,732
  • 15
  • 25
2
votes
1 answer

Android programming imei getDeviceID(telephonymanager)

How can I get IMEI number up to API level 19 (kitkat) in Android programming? I have used getDeviceID(telephonyManager) but it is working only up to API 22 not below for API level 19. Is there any other function that can be used?
2
votes
2 answers

getting device id in android

I have found two ways to get device id in android but I do not which one of them better and what are the differences between them Method 1 public static String getDeviceId2(Context context) { String androidId = Settings.Secure.getString( …
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175
2
votes
1 answer

TelephonyManager.getDeviceId(0) returns different results

For some specific reasons I need to get the IMEI at some point in my Android app. Here is the code I use: TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); if (android.os.Build.VERSION.SDK_INT >=…
Ika
  • 1,608
  • 14
  • 15
2
votes
0 answers

How to programmatically get IMEI number in j2me

I am working on the project where I have to make one login page where user enters IMEI number. Now I have to anagrammatically check whether such kind of IMEI exist or not.
shweta
  • 1,120
  • 1
  • 11
  • 25