对于 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开始它不再工作了,这些没有返回
有人可以帮忙吗?