It would be great if there were a way in Corona SDK to get the carrier name that the device is on.
In native Android:
TelephonyManager tmgr = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE));
String carrierName = tmgr.getNetworkOperatorName();
In native iOS:
CTTelephonyNetworkInfo *networkInfo = [[[CTTelephonyNetworkInfo alloc] init] autorelease];
CTCarrier *carrier = [networkInfo subscriberCellularProvider];
NSString *carrierName = [carrier carrierName];
Is this something that would be easy to do via a Corona plugin?
Alex