Linked Questions
37 questions linked to/from How to find serial number of Android device?
2 votes
2 answers
5k views
Device SERIAL NUMBER [duplicate]
Possible Duplicate: How to find serial number of Android device? how can i get device serial number
1 vote
1 answer
8k views
How to get Android device serial no programmatically [duplicate]
I can see serial number in my android device beneath of the battery in my android device(After removing the battery). Any help to retrieve this serial number ( not IMEI or device ID ) ...
3119 votes
54 answers
1.3m views
Is there a unique Android device ID?
Do Android devices have a unique ID, and if so, what is a simple way to access it using Java?
69 votes
6 answers
168k views
Android: How to programmatically access the device serial number shown in the AVD manager (API Version 8)
How do I programmatically access the value shown in the image below ?
55 votes
13 answers
142k views
Unique ID of Android device
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(...
53 votes
4 answers
54k views
Android Unique Serial Number
I am developing an android application that targets Android 4.0 (API 14) and above. I am looking for a serial number that is unique per device and that persists for ever (dies with the device, does ...
19 votes
3 answers
35k views
android get device ID for adMob [duplicate]
Possible Duplicate: How can I get device ID for Admob I am testing adMob on my android device and following with documentation, I am trying to get device ID executing adRequest. However, I am not ...
39 votes
2 answers
61k views
Implications of Android multiple user support (new in 4.2) for server side data model (e.g. android_id)
Google has just released Android 4.2, which includes support for multiple user profiles on a single device: http://developer.android.com/about/versions/android-4.2.html#MultipleUsers. Google says ...
12 votes
2 answers
36k views
Android Tablet - Get Unique Device ID
How do we get Unique Device ID from the Android Tablets (Android 3.0 SDK HoneyComb)? I have also found that we can get Android Device ID which is unique by using: String deviceId = Settings.System....
19 votes
2 answers
34k views
How to identify an Android device programmatically? [duplicate]
Currently, I am using MAC address as the identifier for an Android device. WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiInfo wInfo = wifiManager....
8 votes
6 answers
15k views
Android get Serial Number
I am trying to get the device serial number programmatically. I have used the following line: Build.SERIAL Which returns something like : 95b9efad04ad28 However which I go to the settings on the ...
19 votes
1 answer
17k views
Get hardware serial number of Android device
I need to get the hardware serial code of Android device where my app is installed. This hardware serial number is the one that you can see on Settings > About Device > Status > Serial number....
4 votes
4 answers
11k views
how to decode android.os.Build.SERIAL?
I'm working on the recurring serial number topic to provide a unique id. I try this : String serial = null; try { Class<?> c = Class.forName("android.os....
2 votes
6 answers
7k views
How to get android device info
I am new in Android. I am developing a simple application where I need to send push notification from server side. So, need to send data using call api when app install. For that, I have to get ...
4 votes
6 answers
17k views
android device ID (not IMEI)
I use the command: adb devices to list the attached devices. On my computer I get : List of devices attached HT9CTP820988 device My question is: how can I get this id (HT9CTP820988) ...