- Send SMS
- Check SMS feature availability
- Start Receiving SMSs
- Stop Receiving SMSs
- Android
phonegap plugin add https://github.com/asanka-x/Phonegap-SMS.git
or
cordova plugin add https://github.com/asanka-x/Phonegap-SMS.git
var smsplugin = cordova.require("info.asankan.phonegap.smsplugin.smsplugin");
send
smsplugin.send(number,message,successCallback(result),failureCallback(error));
isSupported
smsplugin.isSupported(successCallback(result),failureCallback(error));
startReception
smsplugin.startReception(successCallback(result),failureCallback(error));
stopReception
smsplugin.stopReception(successCallback(result),failureCallback(error));