1.0.1 • Published 8 years ago

com.plugin.test v1.0.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
8 years ago

Cordova FileManager Plugin

Simple plugin that manage file.

Using

Clone the plugin

$ git clone https://github.com/don/cordova-plugin-hello.git

Create a new Cordova Project

$ cordova create CuraCloudMI com.curacloudcorp.CuraCloudMI CuraCloudMI

Install the plugin

$ cd CuraCloudMI
$ cordova plugin add ../com.curacloud.fm

Edit www/js/index.js and add the following code inside onDeviceReady

    var success = function(message) {
        alert(message);
    }

    var failure = function() {
        alert("Error calling Hello Plugin");
    }

    hello.greet("World", success, failure);

Install iOS or Android platform

cordova platform add ios
cordova platform add android

Run the code

cordova run 

More Info