Android : Check whether the phone is dual SIM

前端 未结 8 2076
轻奢々
轻奢々 2020-11-22 01:38

After a lot of research on forums, now I know that there is no way to find IMSI or SIM serial number for both the SIM cards in a dual SIM phone (except for contacting the ma

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 01:45

    I have found these system properties on Samsung S8

    SystemProperties.getInt("ro.multisim.simslotcount", 1) > 1
    

    Also, according to the source: https://android.googlesource.com/platform/frameworks/base/+/master/telephony/java/com/android/internal/telephony/TelephonyProperties.java

    getprop persist.radio.multisim.config returns "dsds" or "dsda" on multi sim.

    I have tested this on Samsung S8 and it works

提交回复
热议问题