1

我正在尝试检索手机的 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;
}

代码有问题吗?我还应该做什么?

4

1 回答 1

1

您需要在清单文件中添加以下权限

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
于 2013-03-16T10:04:45.623 回答