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
0
votes
1 answer

Saving for "always" information in Android phone

Hello I'm creating application for android no mater what kind but I need to store some information that information are so important because it's kind of result of registration and future settings for application, and now in managing application…
Robert
  • 1,272
  • 4
  • 21
  • 40
0
votes
1 answer

IMEI "unknown" on android X86

I have created a virtual machine using Virtual Box that is running android X86. I obtained the .iso image from here http://www.android-x86.org/releases/releasenote-8-1-rc2 I have tried to run my apk and NullPointerException occurs every time when…
android enthusiast
  • 2,062
  • 2
  • 24
  • 45
0
votes
1 answer

get the IMEI number of phone having the Android Version 8.1 as the telephonyManager.getDeviceId(); have being deprecated after Marshmallow

@SuppressLint({"MissingPermission", "NewApi"}) public void getDeviceIMEI() { String deviceUniqueIdentifier = null; String deviceImei = null; if (null != telephonyManager) { deviceUniqueIdentifier =…
0
votes
1 answer

Getting mobile IMEI using Arduino

I have an Arduino device connected through USB to the Android smartphone. Is it possible to get the mobile's IMEI without routing it using my Arduino board?
Houssam Badri
  • 2,441
  • 3
  • 29
  • 60
0
votes
3 answers

How to get IMEI from IOS device using C#

I need to read out the IMEI of an IOS device using C#... Is this even possible in C#/Xamarin? Or is there another value that i can use to identify a device?
DerStarkeBaer
  • 669
  • 8
  • 28
0
votes
2 answers

How can we get the iPhone's IMEI?

In my app, I need the iPhone's IMEI to distinguish between different devices,How do I get the iPhone's IMEI?
OnMyWay
  • 1
  • 1
0
votes
1 answer

Do all Devices have a IMEI number? If so, Can another Device Have the same one?

I have three questions on what and how the IMEI can be used. My current knowledge is the IMEI is the devices "Social Security Number", Source Here, so: Can another phone/device have the same IMEI? If not, can I have my app use the IMEI to…
Ken
  • 1
  • 3
0
votes
2 answers

how to get imei number in phonegap app with imeiplugin

Can anyone explain to me how to get the device's IMEI number from Phonegap? I am using the IMEI plugin in my app it is not showing anything. To install, I have tried both: phonegap plugin add https://github.com/zho/phonegap-imeiplugin.git -- OR…
abhi
  • 19
  • 1
  • 6
0
votes
2 answers

Error with check IMEI address and String

I try to comparing the IMEI code and a string public static String getDeviceIMEI(Context context) { if (ActivityCompat.checkSelfPermission(context, Manifest.permission.READ_PHONE_STATE) != PackageManager.PERMISSION_GRANTED) { } String…
Simone
  • 39
  • 8
0
votes
2 answers

Restrict an app for particular IMEI number

I have developing an app of our corporate Telephone Directory. To restrict its distribution to non-corporate persons, I have to restrict the app to particular IMEI number. So whoever wants my app, he will register with email id and IMEI…
HGP Kumar
  • 13
  • 3
0
votes
1 answer

How to get IMEI (not UUID) of mobile handset using cordova?

I have a requirement to get the real device IMEI (64-bit number displayed when dialed '*#06#') using cordova. ngCordova provides the UUID a hexstring. But UUID may change from user to user or after a factory reset as per the accepted answer…
0
votes
1 answer

Get device IMEI and send it through WebView to a website

I have an Android aplication which displays a web app (of mine) into a webview. For a certain reason I want to get the device IMEI as soon as the app is open, send it with javascript from the MainActivity.java (and through the webview) to my web app…
0
votes
0 answers

how to generate IMIE from device id

Some android devices don't have an IMEI, but my app usses it for registration on a website. All devices have unique device ID though. It looks like this - "00000000-54b3-e7c7-0000-000046bffd97". How can I generate 15 integers from this ID and be…
Andy Core
  • 17
  • 5
0
votes
1 answer

Permission For READ_PHONE_STATE Appcelerator android 6.0

i have a probleme in android.permission.READ_PHONE_STATE i deploy my project to samsung galaxy S6 i use this code to request the READ_PHONE_STATE permission but it's not working ,i use the ti.permissions module . in my tiapp.xml i added …
0
votes
1 answer

Fetching DeviceId through TelephonyManager in Xamarin.Android

public string GetIdentifier() { Android.Telephony.TelephonyManager mTelephonyMgr; mTelephonyMgr = (Android.Telephony.TelephonyManager)Forms.Context.GetSystemService(Forms.Context.TELEPHONY_SERVICE); …