Same serial number on several android devices. Adb is useless. How can I change the serial number?

前端 未结 3 1751
攒了一身酷
攒了一身酷 2020-12-01 05:58

I bought a lot (500+) cheap China tablet with AllWinner processor and Android 4.0.3. All tablets expose the same serial number. I can\'t deploy my application simultaneously

相关标签:
3条回答
  • 2020-12-01 06:16

    build number etc by editing the 'build.prop' file in /system. The serial number can be changed by adding the property 'ro.serialno=' to build.prop file

    0 讨论(0)
  • 2020-12-01 06:25

    Try editing /data/misc/wifi/serialno then reboot, it worked as a permanent solution for me

    The location of this number may differ between android versions

    The serial number should be stored in a file with only the serial number inside and no \n

    0 讨论(0)
  • 2020-12-01 06:27

    You need to populate /sys/class/android_usb/android0/iSerial sysfs file with unique values for every device. Most vendors do it with custom init script, which would read the value from a persistent system property or a regular file and put it in sysfs on every power up.

    0 讨论(0)
提交回复
热议问题