Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 421 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 421 Bytes

phonenumber

Cordova plugin for getting an Android device's phone number

To add the plugin

cordova plugin add https://github.com/oneminutedistraction/phonenumber.git

To remove the plugin

cordova plugin remove at.oneminutedistraction.phonenumber

Usage

window.plugins.phonenumber.get(success, failed);

function success(phonenumber) {
	console.log("My number is " + phonenumber);
}