Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unique ID of Android device

Tags:

android

I want some unique ID of the Android device. I've tried it with the following code

String ts = Context.TELEPHONY_SERVICE; TelephonyManager telephonyManager = (TelephonyManager) this.getSystemService(ts); 

However I know that this works only for phones.

What if my app is running on some notebook, netbook or other type of device? How do I get an unique ID in that case?

like image 849
Mudassir Avatar asked Dec 17 '10 06:12

Mudassir


People also ask

What is unique ID for a mobile device?

A Mobile Device ID is a unique customer identifier used to distinguish a mobile device. It could be an IDFA (Identifier for Advertisers) or an Android Ad Id.

How do I find the unique device ID?

* getDeviceId() returns the unique device ID. * For example,the IMEI for GSM and the MEID or ESN for CDMA phones. * getSubscriberId() returns the unique subscriber ID, * For example, the IMSI for a GSM phone.

Do phones have unique ids?

The number is included in the IMSI as an important identifier. The Subscriber Identification Module identifies and authenticates the phone and user to the network, has a unique serial number, and holds substantial information about the user.


2 Answers

There are three types of identifier on android phone.

  1. IMEI
  2. IMSI

    String ts = Context.TELEPHONY_SERVICE; TelephonyManager mTelephonyMgr = (TelephonyManager) getSystemService(ts); String imsi = mTelephonyMgr.getSubscriberId(); String imei = mTelephonyMgr.getDeviceId(); 
  3. Android ID It is a 64-bit hex string which is generated on the device's first boot. Generally it won't be changed unless is factory reset.

    Secure.getString(getContentResolver(), Secure.ANDROID_ID); 
like image 70
hungr Avatar answered Oct 07 '22 18:10

hungr


Sorry to bump an old thread but this problem gives me headache, I found a good article for someone to read, and this really helps me a lot.

Sometimes it is required during Android application development to get the unique id of the Android based smartphone device. This is necessary in cases when the user wants to track the unique device installations of the application.

This is also useful in cases where the Android developer wants to send Push messages to only few specific devices. So over here it becomes necessary to have a UDID for every device.

In Android there are many alternatives to UDID of the device. Some of the methods to get the UDID in android application are listed below with its advantages and disadvantages and any necessary permissions for getting the device ID.

  • The IMEI: (International Mobile Equipment Identity)
  • The Android ID
  • The WLAN MAC Address string
  • The Bluetooth Address string

1) IMEI: (International Mobile Equipment Identity)

The IMEI Number is a very good and primary source to get the device ID. It is unique for each and every device and is dependent on the device Hardware. So it is also unique for each and every device and it is permanent till the lifetime of the device.

The code snippet to get the Device IMEI is as below,

TelephonyManager TelephonyMgr = (TelephonyManager)getSystemService(TELEPHONY_SERVICE); String m_deviceId = TelephonyMgr.getDeviceId(); 

For this your application will require the permission “android.permission.READ_PHONE_STATE” given in the manifest file.

Advantages of using IMEI as Device ID:

The IMEI is unique for each and every device. It remains unique for the device even if the application is re-installed or if the device is rooted or factory reset.

Disadvantages of using IMEI as Device ID:

IMEI is dependent on the Simcard slot of the device, so it is not possible to get the IMEI for the devices that do not use Simcard. In Dual sim devices, we get 2 different IMEIs for the same device as it has 2 slots for simcard.

2) The Android ID

The Android_ID is a unique 64 bit number that is generated and stored when the device is first booted. The Android_ID is wiped out when the device is Factory reset and new one gets generated.

The code to get the Android_ID is shown below,

String m_androidId = Secure.getString(getContentResolver(), Secure.ANDROID_ID); 

Advantages of using Android_ID as Device ID:

It is unique identifier for all type of devices (smart phones and tablets). No need of any permission.

It will remain unique in all the devices and it works on phones without Simcard slot.

Disadvantages of using Android_ID as Device ID:

If Android OS version is upgraded by the user then this may get changed. The ID gets changed if device is rooted or factory reset is done on the device. Also there is a known problem with a Chinese manufacturer of android device that some devices have same Android_ID.

3) The WLAN MAC Address string

We can get the Unique ID for android phones using the WLAN MAC address also. The MAC address is unique for all devices and it works for all kinds of devices.

The code snippet to get the WLAN MAC address for a device is as shown below,

WifiManager m_wm = (WifiManager)getSystemService(Context.WIFI_SERVICE);  String m_wlanMacAdd = m_wm.getConnectionInfo().getMacAddress(); 

Your application will require the permission “android.permission.ACCESS_WIFI_STATE” given in the manifest file.

Advantages of using WLAN MAC address as Device ID:

It is unique identifier for all type of devices (smart phones and tablets). It remains unique if the application is reinstalled.

Disadvantages of using WLAN MAC address as Device ID:

If device doesn’t have wifi hardware then you get null MAC address, but generally it is seen that most of the Android devices have wifi hardware and there are hardly few devices in the market with no wifi hardware.

4) The Bluetooth Address string

We can get the Unique ID for android phones using the Bluetooth device also. The Bluetooth device address is unique for each device having Bluetooth hardware.

The code snippet to get the Bluetooth device address is as given below,

BluetoothAdapter m_BluetoothAdapter = BluetoothAdapter.getDefaultAdapter();  String m_bluetoothAdd = m_BluetoothAdapter.getAddress(); 

To get the above code, your application needs the permission “android.permission.BLUETOOTH” given in the manifest file.

Advantages of using Bluetooth device address as Device ID: It is unique identifier for all type of devices (smart phones and tablets). There is generally a single Bluetooth hardware in all devices and it doesn’t gets changed.

Disadvantages of using Bluetooth device address as Device ID: If device hasn’t bluetooth hardware then you get null.

As per me these are few of the best possible ways to get the Unique Device ID for Android smartphone device and their pros and cons of using it. Now it is upto you to decide which method to use based on the Android application development requirements.

If there are any other methods to get UDID and that covers up the disadvantages of above methods, then I would love to explore those in my Android application. Pl. share those in comment box and also if any suggestions or queries.

Here's the article

like image 36
Samoka Avatar answered Oct 07 '22 18:10

Samoka