How to find out the operator of a mobile number?

2

I need to develop an application to make calls using a cell phone chip, but for this, I have to know the operator of the destination number.

Can you find the destination operator programmatically on android?

    
asked by anonymous 25.02.2016 / 21:35

1 answer

1

Following the documentation : / p>

TelephonyManager manager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
String carrierName = manager.getNetworkOperatorName();
String simOperatorName = manager.getSimOperatorName();

Editing

The operator of the destination number via android api is impossible, there is no way the Operator can know the operator based on the number, especially with the portability. What I would recommend would be to pay for some company that owns this Web Service and make a request in your app. Doing a quick search I found this site

    
02.03.2016 / 22:49