1.1.0 • Published 7 years ago

cordova-plugin-country v1.1.0

Weekly downloads
84
License
MIT
Repository
github
Last release
7 years ago

cordova-plugin-country

Get the 2-letter ISO code from Android's Locale package. Useful when your device may not have GPS or cellular data.

Usage

function success (countryCode) {
  console.log(countryCode);
}

function error () {
  console.warn('An error occured');
}

plugins.country.get(success, error);