android – 如何获取Amazon Kindle Fire的唯一设备ID

要在Android手机/平板电脑上获取唯一设备ID,我们使用以下命令:

((TelephonyManager) ctx.getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId()

但对于Kindle Fire,我们无法得到一个.

有任何想法吗?

解决方法:

您应该尝试使用以下行:

deviceId = Secure.getString(context.getContentResolver(), Secure.ANDROID_ID);

这将从平板电脑获取设备ID,您使用的代码仅适用于手机(它将在平板电脑上返回null)

上一篇:如何在Android中获得持久的udid?


下一篇:javascript – 为手机生成唯一ID(不使用UDID)