Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 333 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 333 Bytes

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);