How to find serial number of Android device?

后端 未结 17 1984
借酒劲吻你
借酒劲吻你 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:25

    There is an excellent post on the Android Developer's Blog discussing this.

    It recommends against using TelephonyManager.getDeviceId() as it doesn't work on Android devices which aren't phones such as tablets, it requires the READ_PHONE_STATE permission and it doesn't work reliably on all phones.

    Instead you could use one of the following:

    • Mac Address
    • Serial Number
    • ANDROID_ID

    The post discusses the pros and cons of each and it's worth reading so you can work out which would be the best for your use.

提交回复
热议问题