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


代码有问题吗?我该怎么办?

最佳答案

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

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

关于android - 获取手机的IMEI,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15447937/

10-11 00:01