Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a little program which syncs some of the users data from my app on the cloud (just a load of strings, but that's not the point).

To help identify each device uniquely I would like to use the IMEI (or ESN number for CDMA devices) ...so here is the question, does anyone know how to access this programmatically?

Thanks, Tom.

share|improve this question

6 Answers

up vote 94 down vote accepted

You want to call android.telephony.TelephonyManager.getDeviceId().

This will return whatever string uniquely identifies the device (IMEI on GSM, MEID for CDMA).

You'll need the

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

permission to do this.

That being said, be careful about doing this. Not only will users wonder why your application is accessing their telephony stack, it might be difficult to migrate data over if the user gets a new device.

share|improve this answer
1  
What would be a better solution then which would enable them to migrate data in the future? Google email address? If so how can I pull that out from the system? – Tom Dec 30 '09 at 11:17
2  
The most reliable way to do this is to just have them create an account the first time they launch your app. There are ways to get the user's email address (see the docs on AccountManager), but verifying that a malicious user hasn't forged this information requires a bit of knowledge about how the Google Data APIs work -- more than I can put in this small comment box. ;) – Trevor Johns Dec 30 '09 at 22:48
Actually, for that matter, you don't have any guarantee that the user hasn't forged their IMEI/MEID either. If security is of any concern, you really need to use either a username/password, or the getAuthToken() method in AccountManager (and again, you'd need to verify this token with the server that originally issued it). – Trevor Johns Dec 30 '09 at 22:51

In addition to the answer of Trevor Johns, you can use this as follows:

TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.getDeviceId();

And you should add the following permission into your Manifest.xml file:

<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

In emulator, you'll probably get a like a "00000..." value. getDeviceId() returns NULL if device ID is not available.

share|improve this answer
Thanks Very useful information – Mercy Dec 16 '11 at 5:11

Or you can use the ANDROID_ID setting from Android.Provider.Settings.System (as described here strazerre.com).

This has the advantage that it doesn't require special permissions but can change if another application has write access and changes it (which is apparently unusual but not impossible).

Just for reference here is the code from the blog:

import Android.Provider.Settings.System;   

String androidID = System.getString(this.getContentResolver(),System.ANDROID_ID);
share|improve this answer
7  
This constant is deprecated. You instead need to use android.provider.Settings.Secure.ANDROID_ID; – mcorley May 18 '11 at 21:33

From: http://mytechead.wordpress.com/2011/08/28/how-to-get-imei-number-of-android-device/:

The following code helps in obtaining IMEI number of android devices :

TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);

String device_id = tm.getDeviceId();

Permissions required in Android Manifest:

android.permission.READ_PHONE_STATE

NOTE: In case of tablets or devices which can’t act as Mobile Phone IMEI will be null.

share|improve this answer

I use the following code to get the IMEI or use Secure.ANDROID_ID as an alternative, when the device doesn't have phone capabilities:

String identifier = null;
TelephonyManager tm = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE));
if (tm != null)
      identifier = tm.getDeviceId();
if (identifier == null || identifier .length() == 0)
      identifier = Secure.getString(activity.getContentResolver(),Secure.ANDROID_ID);
share|improve this answer
This works..................... – Rajeev May 6 at 10:21

for API Level 11 or above case TelephonyManager.PHONE_TYPE_SIP: return "SIP";

TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); textDeviceID.setText(getDeviceID(telephonyManager));

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.