Skip to content

edewit/cordova-plugin-hello

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

Sample Hello World Cordova Plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 29.1%
  • Java 26.9%
  • C# 23.8%
  • JavaScript 20.2%