com.peerio.cordova.plugin.carrier

Cordova Carrier Plugin

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
com.peerio.cordova.plugin.carrier
1.0.46 years ago8 years agoMinified + gzip package size for com.peerio.cordova.plugin.carrier in KB

Readme

cordova-plugin-carrier #

Authors ##

This plugin was forked from https://github.com/dtmtec/cordova-plugin-carrier

What is it? ##

cordova-plugin-carrier is a cordova plugin to get the device's carrier name, mcc, mnc and country code. The information comes from the device's SIM card.

Installation ##

The plugin works on both Android and iOS platforms. To install it, go to your project dir and run this command:
cordova plugin add br.com.dtmtec.plugins.carrier

Usage ##

On both Android and iOS, the plugin returns to the app an JSON with the following properties: carrierName, countryCode, mcc, mnc.
<script>
  function alertCarrier() {
   var succ = function (data) {
     alert(data['carrierName']);
     alert(data['countryCode']);
     alert(data['mcc']);
     alert(data['mnc']);
   }

   var err = function () {
     alert('Error!');
   }

   window.plugins.carrier.getCarrierInfo(succ, err)
  }

  document.addEventListener('deviceready', alertCarrier, false);
</script>