cordova-plugin-hello icon indicating copy to clipboard operation
cordova-plugin-hello copied to clipboard

Sample Hello World Cordova Plugin

Cordova Hello World Plugin

Simple plugin that returns your string prefixed with hello

Install

Clone the project to then install by typing:

    $ cordova plugin add <path>

Add some the following to index.js -> deviceReady to call the plugin

	var	win = function (result) {
        alert(result);		
    }, 
    fail = function (error) {
        alert("ERROR " + error);
    };

	hello.greet("World", win, fail);