top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

how many imsi number a dual sim phone can have?

0 votes
548 views

As imsi number will be one even there r many msisdn numbers

posted Jun 3, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Hi,

Dual SIM mobile should have two IMSI numbers, each for a SIM card.

TelephonyInfo telephonyInfo = TelephonyInfo.getInstance(this);
String imsiSIM1 = telephonyInfo.getImsiSIM1();
String imsiSIM2 = telephonyInfo.getImsiSIM2();

You may use the above code to get IMSIs respectively.

Edit 1:
By the way you can get TelephonyInfo.java here

Note: I have not tested the code! I hope it works.

Hope this helps.

answer Jun 4, 2016 by Vinod Kumar K V
Similar Questions
0 votes

I am trying to get my imsi number by self. How to get that one.

+2 votes

IMSI and MSISDN are used to denote the mobile in some sense i.e. Sim Identification or User identification. My question is why we have two numbers, is there any relation between these i.e. can we deduce IMSI from MSISDN or vice versa. Is it necessary to have both numbers or there can be cases when only one number is available or applicable.

+1 vote

I am looking for ways for a GSM/3G device to be able to automatically select the appropriate GPRS/Data settings for customer SIM cards, particularly where a service provider offers different parameters for different account types?

Is this possible, or will I need to code the device to try multiple parameter sets until successful?

...