Android智能手机上是否有任何ID类型的东西在每个设备上都是唯一的?我想存储反馈,用户将我发送到我的服务器,特定于设备。因此,用户可以查看我是否修复了他们报告的错误或是否实现了他们的想法。
答案 0 :(得分:1)
您可以使用::
获取唯一的设备IDBase
答案 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;
}