How to get Cell currently using GSM / CDMA frequency (Android)

Is there an Android class / api with which I can get the current radio frequency of my cell, be it GSM or CDMA. Any recommendations. Thanks

+5
source share
2 answers

I'm not sure about this, but check TelephonyManager , you can find a solution to get the frequency.

+1
source

As already mentioned, I get the name of the operator, and then I record the intentions depending on the medium.

TelephonyManager manager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE));
String carrierName = manager.getNetworkOperatorName();
0
source

All Articles