How to find serial number of Android device?

后端 未结 17 1960
借酒劲吻你
借酒劲吻你 2020-11-22 14:07

I need to use a unique ID for an Android app and I thought the serial number for the device would be a good candidate. How do I retrieve the serial number of an Android devi

17条回答
  •  清酒与你
    2020-11-22 14:24

    Starting in Android 10, apps must have the READ_PRIVILEGED_PHONE_STATE privileged permission in order to access the device's non-resettable identifiers, which include both IMEI and serial number.

    Affected methods include the following:

    Build getSerial() TelephonyManager getImei() getDeviceId() getMeid() getSimSerialNumber() getSubscriberId()

    READ_PRIVILEGED_PHONE_STATE is available for platform only

提交回复
热议问题