This plugin can display message "Hello World".
Very simple.
I created this to learn how to develop cordova plugin.
Add plugin to your project.
$ cordova plugin add https://github.com/cigalecigales/cordova-plugin-helloworld.git
Call sayHello
method
document.addEventListener("deviceready", function() {
var success = function(message) {
alert(message);
}
var failure = function() {
alert("Plugin error...");
}
hello.sayHello("SAMPLE NAME", success, failure);
});