Do Android devices have a unique id, and if so, what is a simple way to access it via java?
|
|
|||||||||||||||||||||
|
|
There are many answers to this question, most of which will only work "some" of the time, and unfortunately that's not good enough. Based on my tests of devices (all phones, at least one of which is not activated):
So if you want something unique to the device itself, TM.getDeviceId() should be sufficient. Obviously some users are more paranoid than others, so it might be useful to hash 1 or more of these identifiers, so that the string is still virtually unique to the device, but does not explicitly identify the user's actual device. For example, using String.hashCode(), combined with a UUID:
might result in something like: It works well enough for me. As Richard mentions below, don't forget that you need permission to read the TelephonyManager properties, so add this to your manifest:
|
|||||||||||||||||||||
|
|
As Dave Webb mentions, the Android Developer Blog has an article that covers this. Their preferred solution is to track app installs rather than devices, and that will work well for most use cases. The blog post will show you the necessary code to make that work, and I recommend you check it out. However, the blog post goes on to discuss solutions if you need a device identifier rather than an app installation identifier. I spoke with someone at Google to get some additional clarification on a few items in the event that you need to do so. Here's what I discovered about device identifiers that's NOT mentioned in the aforementioned blog post:
Based on Google's recommendations, I implemented a class that will generate a unique UUID for each device, using ANDROID_ID as the seed where appropriate, falling back on TelephonyManager.getDeviceId() as necessary, and if that fails, resorting to a randomly generated unique UUID that is persisted across app restarts (but not app re-installations). Note that for devices that have to fallback on the device ID, the unique ID WILL persist across factory resets. This is something to be aware of. If you need to ensure that a factory reset will reset your unique ID, you may want to consider falling back directly to the random UUID instead of the device ID. Again, this code is for a device ID, not an app installation ID. For most situations, an app installation ID is probably what you're looking for. But if you do need a device ID, then the following code will probably work for you.
|
|||||||||||||||||||||
|
|
Here is the code that Reto Meier used in the google i/o presentation this year to get a unique id for the user:
If you couple this with a backup strategy to send preferences to the cloud (also described in Reto's talk, you should have an id that ties to a user and sticks around after the device has been wiped, or even replaced. I plan to use this in analytics going forward (in other words I have not done that bit yet :). |
|||||||||||||||
|
|
Also you might consider the WiFi adapter's MAC address. Retrieved thusly:
Requires permission Reported to be available even when WiFi is not connected. If Joe from the answer above gives this one a try on his many devices, that'd be nice. EDIT: on some devices, it's not available when WiFi is turned off. |
|||||||||||||||||
|
|
There’s rather useful info here. It covers five different ID types:
|
|||||||||||
|
|
The official Android Developers Blog now has a full article just about this very subject: http://android-developers.blogspot.com/2011/03/identifying-app-installations.html |
|||||||||
|
This code returns device serial number using hidden Android API. But, this code don't works on Samsung Galaxy Tab because "ro.serialno" isn't set on this device. |
|||||||
|
|
I think this is sure fire way of building a skeleton for a unique ID... check it out. Pseudo-Unique ID, that works on all Android devices Some devices don't have a phone (eg. Tablets) or for some reason you don't want to include the READ_PHONE_STATE permission. You can still read details like ROM Version, Manufacturer name, CPU type, and other hardware details, that will be well suited if you want to use the ID for a serial key check, or other general purposes. The ID computed in this way won't be unique: it is possible to find two devices with the same ID (based on the same hardware and rom image) but the chances in real world applications are negligible. For this purpose you can use the Build class:
Most of the Build members are strings, what we're doing here is to take their length and transform it via modulo in a digit. We have 13 such digits and we are adding two more in front (35) to have the same size ID like the IMEI (15 digits). There are other possibilities here are well, just have a look at these strings. Returns something like: 355715565309247 . No special permission are required, making this approach very convenient. (Extra info: The technique given above was copied from an article on Pocket Magic.) |
|||||||||||||||||||||
|
Using above code you can get a Unique device ID of Android OS Device as String. |
||||
|
|
|
A Serial field was added to the I don't know whether it is actually supported (=not null) by all devices with API level >= 9 though. |
|||
|
|
|
For detailed instructions on how to get a Unique Identifier for each Android device your application is installed from, see this official Android Developers Blog posting: http://android-developers.blogspot.com/2011/03/identifying-app-installations.html It seems the best way is for you to generate one your self upon installation and subsequently read it when the application is re-launched. I personally find this acceptable but not ideal. No one identifier provided by Android works in all instances as most are dependent on the phone's radio states (wifi on/off, cellular on/off, bluetooth on/off). The others like Settings.Secure.ANDROID_ID must be implemented by the manufacturer and are not guaranteed to be unique. The following is an example of writing data to an INSTALLATION file that would be stored along with any other data the application saves locally.
|
|||||||
|
|
One thing I'll add - I have one of those unique situations. Using:
Turns out that even though my Viewsonic G Tablet reports a DeviceID that is not Null, every single G Tablet reports the same number. Makes it interesting playing "Pocket Empires" which gives you instant access to someone's account based on the "unique" DeviceID. My device does not have a cell radio. |
|||
|
|
|
At Google i/o Reto Meier released a robust answer to how to approach this which should meet most developers needs to track users across installations. Anthony Nolan shows the direction in his answer but I thought I'd write out the full approach so that others can easily see how to do it (it took me a while to figure out the details). This approach will give you an anonymous, secure user ID which will be persistent for the user across different devices (based on primary google account) and across installs. The basic approach is to generate a random user ID and to store this in the apps shared preferences. You then use Google's backup agent to store the shared preferences linked to the google account in the cloud. Lets go through the full approach. First we need to create a backup for our SharedPreferences using the Android Backup Service. Start by registering your app via this link: http://developer.android.com/google/backup/signup.html Google will give you a backup service key which you need to add to the manifest. You also need to tell the application to use the BackupAgent as follows:
Then you need to create the backup agent and tell it to use the helper agent for sharedpreferences:
To complete the backup you need to create an instance of BackupManager in your main Activity:
Finally create a user ID, if it doesn't already exist, and store it in the SharedPreferences:
This User_ID will now be persistent across installations, even if the user moves device. For more information on this approach see Reto's talk here http://www.google.com/events/io/2011/sessions/android-protips-advanced-topics-for-expert-android-app-developers.html And for full details of how to implement the backup agent see the developer site here: http://developer.android.com/guide/topics/data/backup.html I particularly recommend the section at the bottom on testing as the backup does not happen instantaneously and so to test you have to force the backup. |
|||
|
How about the IMEI. That is unique for Android or other mobile devices. |
|||||||||||||||||
|
|
There are a lot of different approaches to work around those
I myself prefer using an existing OpenUDID implementation (see https://github.com/ylechelle/OpenUDID) for android (see https://github.com/vieux/OpenUDID). It is easy to integrate and makes use of the |
|||
|
|
|
|||
|
|
|
Another way is to use /sys/class/android_usb/android0/iSerial in an App with no permissions whatsoever.
To do this in java one would just use a FileInputStream to open the iSerial file and read out the characters. Just be sure you wrap it in an exception handler because not all devices have this file. At least the following devices are known to have this file world-readable:
You can also see my blog post here: http://insitusec.blogspot.com/2013/01/leaking-android-hardware-serial-number.html where I discuss what other files are available for info. |
||||
|
|
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:
|
|||
|
|
protected by Robert Harvey♦ Feb 5 '11 at 17:06
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

ANDROID_IDbe sure to read this answer and this bug. – Dheeraj V.S. Jan 16 at 8:16