如何在Android 5.0上使用adb命令获取MEID和IMEI信息?

时间:2015-03-30 18:35:03

标签: android adb

我知道唯一适用于其他版本的命令是" adb shell dumpsys iphonesubinfo"但它似乎无法在Android 5.0上运行。

1 个答案:

答案 0 :(得分:11)

要获得TelephonyManager.getDeviceId(),您可以这样做:

adb shell service call iphonesubinfo 1

如果您在解析service call输出时遇到问题请查看https://gist.github.com/ktnr74/60ac7bcc2cd17b43f2cb

或者您可以使用此Windows单行程序在设备端执行此操作:

adb shell "service call iphonesubinfo 1 | grep -o '[0-9a-f]\{8\} ' | tail -n+3 | while read a; do echo -n \\u${a:4:4}\\u${a:0:4}; done"

或者在Linux中:

adb shell 'service call iphonesubinfo 1 | grep -o "[0-9a-f]\{8\} " | tail -n+3 | while read a; do echo -n "\u${a:4:4}\u${a:0:4}"; done'