I am trying to get the MCC and MNC for the blackberry device. I am using this code:
int code = RadioInfo.getCurrentNetworkIndex();
int mcc = RadioInfo.getMCC(code);
int mnc = RadioInfo.getMNC(code);
String mccS = Integer.toString(mcc);
String mncS = Integer.toString(mnc);
I am getting values, byt when searching for the right values on the internet, I found that the MCC and MNC differ from the ones I obtained in this code. For example for the operator alfa in lebanon, I should obtain:
Mcc = 415 and MNC = 1
I am obtaining:
Mcc = 1045 and MNC = 1
Why Is that happening? Is this the right way to get the MCC and MNC? Thanks in advance
