/ocaml-cordova-plugin-sms

Binding in OCaml to cordova-plugin-sms using gen_js_api.

Primary LanguageOCamlGNU Lesser General Public License v3.0LGPL-3.0

ocaml-cordova-plugin-sms

LGPL-v3 licensed Build Status

Binding to cordova-sms-plugin

What does cordova-sms-plugin do ?

Cross-platform plugin for Cordova / PhoneGap to to easily send SMS. Available
for Android, iOS, and Windows Phone 8.

This plugin works with Cordova 3.x, 4.x and 5.x version.

Source: cordova-sms-plugin

Repository branches and tags

We are migrating bindings from js_of_ocaml (low level bindings) to gen_js_api (high level bindings).

The gen_js_api binding allows to use pure ocaml types (you don't have to use the ## syntax from js_of_ocaml or Js.string type but only # and string type).

The js_of_ocaml version is available in the branch js_of_ocaml but we recommend to use the gen_js_api version which is the master branch.

How to install and compile your project by using this plugin ?

Don't forget to switch to a compiler >= 4.03.0.

opam switch 4.03.0

You can use opam by pinning the repository with

opam pin add cordova-plugin-sms https://github.com/dannywillems/ocaml-cordova-plugin-sms.git

and to compile your project, use

ocamlfind ocamlc -c -o [output_file] -package gen_js_api -package cordova-plugin-sms [...] -linkpkg [other arguments]

Don't forget to install the cordova plugin activity indicator with

cordova plugin add cordova-plugin-sms

How to use ?

See the official documentation cordova-sms-plugin