TelephonyManager tm = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
if(tm != null)
carrier = tm.getNetworkOperatorName();
I just want to get network operator name which is called 'carrier'. But always return "" with android 6 device. Is there any solution?