Is it possible to get the following information of a incoming number in android
- MCC
- MNC
- LAC
- Cell ID
I have tried the code
TelephonyManager tel = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String networkOperator = tel.getNetworkOperator();
if (networkOperator != null) {
mcc = Integer.parseInt(networkOperator.substring(0, 3));
mnc = Integer.parseInt(networkOperator.substring(3));
}
It returns the details of the current SIM, But I want to find it for the incoming number