如何使用命令在连接到Linux PC的Android设备中找到SIM的ICCID?
我已将Android设备与SIM卡连接到我的Linux PC。 我想知道Andorid手机中SIM的ICCID。
在Android应用程序中使用时,我可以使用getIccSerialNumber()
获取ICCID。但我不想在手机上运行Android App。相反,我想只使用我的Linux PC获取ICCID。即使用adb
命令或在我的电脑上运行C程序。
我该怎么做?
答案 0 :(得分:1)
致电getIccSerialNumber()
做:
adb shell service call iphonesubinfo 11
答案 1 :(得分:0)
adb shell dumpsys iphonesubinfo
在此处adb shell dumpsys iphonesubinfo中参考服务调用命令的用法!