每个设备的唯一ID

时间:2016-07-18 06:13:00

标签: android

Android智能手机上是否有任何ID类型的东西在每个设备上都是唯一的?我想存储反馈,用户将我发送到我的服务器,特定于设备。因此,用户可以查看我是否修复了他们报告的错误或是否实现了他们的想法。

2 个答案:

答案 0 :(得分:1)

您可以使用::

获取唯一的设备ID
Base

答案 1 :(得分:0)

设备ID对于每个设备都是唯一的

    public String getDeviceUniqueID(){    
        String DeviceId = "";
        TelephonyManager mTelephony = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
       //if your device contains sim slot
        if (mTelephony.getDeviceId() != null){
            DeviceId = mTelephony.getDeviceId(); 
        }else{
        // if your device not having a sim slot 
            DeviceId = Secure.getString(getApplicationContext().getContentResolver(), Secure.ANDROID_ID); 
        }
        return DeviceId;
    }