Mobile device cellular provider

I’m trying to register our players with an sms service utilized by our game server and I’m pulling my hair out trying to search for this (either it’s very obvious and I’m missing it or somehow it can’t be done).

Is there a way to get a user’s cellular provider for their mobile device? (i.e. Verizon, Sprint, etc.)
I can’t seem to find any information for iOS or Android on the topic. I know in Obj. C and Swift it’s fairly easy to get this information, but if I can avoid writing a plugin that would be ideal. I’ll bite the bullet if I have to.

Thanks in advance.

  • Conrad

For iOS there is the iOS namespace, in which there is the ‘Device’ static class:

VendorID should be the property you’re looking for, I think.

I know nothing beyond that, I merely pulled up the documentation for the iOS namespace and found that class.

Thanks, my server guy and I have been looking at that, but it doesn’t seem to be correct.

:edit: Yeah, that seems to dictate where the app itself was downloaded from if I’m interpreting Apple’s documentation correctly.

I am also curious about this feature. Did you find the solution?