Is it possible to identify currently attached mobile network and network operators programmatically on Android? If it is possible please provide code samples
Thank you.
Try this,
// Get System TELEPHONY service reference
TelephonyManager tManager = (TelephonyManager) getBaseContext()
      .getSystemService(Context.TELEPHONY_SERVICE);
// Get carrier name (Network Operator Name)
String carrierName = tManager.getNetworkOperatorName();
// Get Phone model and manufacturer name
 String manufacturer = Build.MANUFACTURER;
 String model = Build.MODEL;
Required Permission:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With