gpt4 book ai didi

android - 使用 ADB 命令获取 IMEI 号 Android 12

转载 作者:行者123 更新时间:2023-12-04 23:58:40 58 4
gpt4 key购买 nike

对于 11 之前的 android 版本,我使用以下命令从我的设备获取 IMEI 号码:

adb shell "service call iphonesubinfo 4 | cut -c 52-66 | tr -d '.[:space:]'"

adb shell service call iphonesubinfo 1 | toybox cut -d "'" -f2 | toybox grep -Eo '[0-9]' | toybox xargs | toybox sed 's/\ //g'

从 android 12 开始它不再工作了,这些不返回任何内容

有人可以帮忙吗?

最佳答案

以下是我的 Android 12 设备上的运行情况:

adb root
adb shell "service call iphonesubinfo 1 i64 0 | cut -c 52-66 | tr -d '.[:space:]'"
  • IMEI 只能通过 root 访问
  • 它想要一个额外的 64 位整数发送到服务。

iphonesubinfo 调用随每个 Android 版本而有所不同。我没有检查实现,所以上面的代码只是试验该服务的结果。 iphonesubinfo 1 似乎也在以前的 Android 版本上报告 IMEI,至少从 Android 10 开始是这样。

关于android - 使用 ADB 命令获取 IMEI 号 Android 12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71022247/

58 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com