如何使用命令在连接Linux PC的Android设备上查找SIM卡的ICCID?
我已经通过SIM卡将我的Android设备连接到了我的Linux PC。我想知道Andorid手机的SIM卡的ICCID。
当我在安卓应用中使用时,我可以使用getIccSerialNumber()获取ICCID。但我不想在手机上运行Android应用程序。相反,我希望仅使用我的Linux PC获取ICCID。例如,通过使用adb命令或在我的PC上运行C程序。
我该怎么做呢?
发布于 2012-11-30 22:54:54
要调用getIccSerialNumber() do:
adb shell service call iphonesubinfo 11发布于 2019-12-28 06:38:58
adb shell哑巴iphonesubinfo
请参考此处adb shell dumpsys iphonesubinfo中服务调用命令的用法!
https://stackoverflow.com/questions/13640121
复制相似问题