我正在开发android。应用程序需要接收电话设备ID。
为此,我使用了
TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String deviceId = telephonyManager.getDeviceId();
我收到deviceId为“000000000000000”//这是在模拟器中
但是当我通过拨打(星号)#(星标)#8255#(星号)#(星号)检查我的设备ID时,它显示我的设备ID如下图所示
如何获取该设备ID? 即使我尝试使用android mobile也都是不同的ID。
请帮助..