How to get the number of the second SIM card?
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
tm.getLine1Number();
Returns the number of the first SIM card.
How to get the number of the second SIM card?
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
tm.getLine1Number();
Returns the number of the first SIM card.