我正在尝试检索手机的 IMEI 号码。我正在使用下面的代码:
public static string GetDeviceId(Context context)
{
TelephonyManager telephonyMgr = context.GetSystemService(Context.TelephonyService) as TelephonyManager;
string deviceId = telephonyMgr.DeviceId == null ? "UNAVAILABLE" : telephonyMgr.DeviceId;
return deviceId;
}
代码有问题吗?我还应该做什么?