Questions tagged [carrier]

90 questions
50
votes
11 answers

Retrieving Carrier Name from iPhone programmatically

Is there a way to know the cell carrier on an iPhone programmatically? I am looking for the carrier name which the iPhone is connected to.
thierryb
  • 3,660
  • 4
  • 42
  • 58
19
votes
3 answers

iPhone - how to determine carrier of the device (AT&T, Verizon, etc?)

Is there a way to get information about the carrier of iPhones programmatically?
Suchi
  • 9,989
  • 23
  • 68
  • 112
13
votes
3 answers

subscriberCellularProvider was deprecated in iOS 12.0

I'm trying to make a list carrier with subscriberCellularProvider. But I got one problem which is "'subscriberCellularProvider' was deprecated in iOS 12.0: Replaced by serviceSubscriberCellularProviders" I'm using XCode 11.4.1 and iOS 13. Anybody…
Hanan Hakim
  • 131
  • 1
  • 3
12
votes
3 answers

How do I detect a cellular carrier dynamically through php/ajax/javascript?

I'm asking this because I've been on SO most of the day, and can’t seem to get/find an answer. This is what I'm trying to do (without using a paid gateway): -First of all I'm setting up a database with various info and dates. -Using a cron I will be…
rcpilotp51
  • 524
  • 1
  • 3
  • 22
10
votes
2 answers

Getting carrier's name with CoreTelephony returns just "Carrier"

I tried getting carrier name with this code (using CoreTelephony): CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init]; CTCarrier *carrier = [netinfo subscriberCellularProvider]; NSLog(@"Carrier Name: %@", [carrier…
DixieFlatline
  • 7,895
  • 24
  • 95
  • 147
7
votes
2 answers

Get Network MNC and MCC

I know I can get the carriers Name, MNC and MCC using the following properties of the CTCarrier Class carrierName mobileCountryCode mobileNetworkCode These details are of the SIM inserted into the device. Is there a way to get similar details of…
Sahil Khanna
  • 4,262
  • 8
  • 47
  • 72
6
votes
2 answers

Change network selection mode programmatically

I'm trying (wondering if it's even possible) to write an app, that would change the network selection mode automatically, based on some criteria. E.g. change the network operator from Vodafone to T-Mobile (assuming that the SIM card registration…
Artiom Chilaru
  • 11,811
  • 4
  • 41
  • 52
5
votes
4 answers

iOS I can't get my carrier name

as explained here -> Retrieving Carrier Name from iPhone Programmatically i'm trying to get my carrier's name, i'm using this code CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init]; CTCarrier *carrier = [netinfo…
Gianluca
  • 2,379
  • 3
  • 25
  • 41
5
votes
2 answers

Shopify Carrier Service API doesn't show dates

I have registered a carrier service using the Shopify API. Shopify requires max and min delivery dates to show rates on checkout. I am passing these fields. But now I don't want to show these days with my rates titles. Is this possible? Now the rate…
Mani
  • 532
  • 3
  • 22
4
votes
1 answer

Rails: undefined method 'paginates_per'

I'm installing a gem called Carrier https://github.com/stanislaw/carrier/blob/master/Gemfile into a Rails 3.2.1 app. It uses Kaminari and when I did bundle install after adding gem "carrier" to my Gemfile, it showed that I was using kaminari Using…
Leahcim
  • 40,649
  • 59
  • 195
  • 334
4
votes
1 answer

How to find out carrier's name when using MVNO? (i want the one written in notification Bar)

I am just trying to get my carrier name. The issue while trying to use: TelephonyManager manager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE)); String carrierName = manager.getNetworkOperatorName(); That is working great…
Waza_Be
  • 39,407
  • 49
  • 186
  • 260
4
votes
1 answer

Global phone carrier lookup using python

I got this code from pypi: from phonenumbers import carrier ro_number = phonenumbers.parse("+40721234567", "RO") carrier.name_for_number(ro_number, "en") Output: 'Vodafone' I am in India. When I write this code for my phone number it works…
3
votes
1 answer

Is it possible to identify the carrier / operator (ATT, Verizon, etc.) from the Android User Agent String

Server Side I need to identify the carrier (ATT, Verizon, etc.). On iPhone you can do it with the firmware number. I was thinking that Android's device + build information in the UA might do the trick. Has anyone done this. I do not have client…
John Klein
  • 130
  • 2
  • 6
3
votes
1 answer

CarrierService.onLoadConfig not being called even after gaining Carrier Privileges

I am working on a feature where i need to update some CarrierConfig for our subscriptions once the Sim is being installed and the app gains the Carrier Privileges. Now the app successfully gains the Carrier Prviliges but somehow CarrierService is…
Furqan Khan
  • 528
  • 4
  • 14
3
votes
1 answer

Carrier custom application

I need to create an Android application to set carrier configuration(VoLte e.g.). The application should fetch configs from our Back-End and apply them on the phone. In Android documentation I found the following article: This article says, that I…
1
2 3 4 5 6