Gets the number of the phone. It should work if the phone number is available on Settings -> About Phone -> Status -> My phone number.
If you are using cordova-cli, install with:
cordova plugin add https://github.com/kolach/cordova-plugin-phone-number.git
Works with Angular only:
cordova.getPhoneNumber(function (number) {
alert(number);
});
cordova.getNetworkCountryCode(function (countryCode) {
alert(countryCode);
});
cordova.getSimCountryCode(function (countryCode) {
alert(countryCode);
});
## Credits
Written by Nick Chistyakov at AssuredLabor
Code based on the following posts: