Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Serial number of device that presented upon adb devices

Tags:

android

Iam using a command: adb devices

and get this: C:>adb devices List of devices attached HT9CTP820385 device

My question is: where this serial number comes from? Does it burned on flash of device one time during a manufectoring or adb drivers assignes it dynamically or it comes with release that is burned on device?

like image 624
ilana Avatar asked Jun 21 '10 08:06

ilana


People also ask

How do I find my device serial ID?

To find your device's serial number in the software, go to Settings > System. Then jump into About Phone > Status. Your device's serial number will generally be located toward the bottom of this screen.

How can I get IMEI number from ADB?

adb shell dumpsys iphonesybinfo You can check and save the IMEI number of your device by dialing *#06# in your dialer app and taking a screenshot of it. Alternatively, you can use this ADB command on your PC.

Where are Android serial numbers stored?

In the device's system settings: Settings->System->About Tablet->Model->Serial number. On the device's retail packaging. The device's serial number can be found on the back of the box. On the device's back cover.


1 Answers

On the samsung g2 this number is written in /sys/class/android_usb/f_accessory/device/iSerial. It can be retrieved by executing adb get-serialno.

like image 200
kingarold Avatar answered Sep 19 '22 23:09

kingarold