0.0.1-dev • Published 9 years ago

cordova-plugin-flomio v0.0.1-dev

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

Flomio Cordova Plugin

Flomio's Proximity ID plugin for Cordova.

Installation

  • Make sure that you have Node and Cordova CLI installed on your machine.

  • Create your Cordova example app

cordova create my-plugin-example-app && cd $_
  • Add the plugin to it
cordova plugin add https://github.com/flomio/flomio_cordova_plugin.git
  • Open index.html and add a button
<button onclick="floPlugin.webToSdkCommand();">Say hello to your plugin!</button>
  • Register plugin within config.xml of your app
<feature name="FLOPlugin">
    <param name="ios-package" value="FLOPlugin" />
</feature>
  • Build and run app
cordova run ios