dannywillems / ocaml-cordova-plugin-dialogs

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ocaml-cordova-plugin-dialogs

LGPL-v3 licensed Build Status

Binding to cordova-plugin-dialogs

Example application.

What does cordova-plugin-dialogs do ?

This plugin defines a global `navigator.dialogs` object, which provides access
to the device dialogs database.

Source: cordova-plugin-dialogs

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-dialogs https://github.com/dannywillems/ocaml-cordova-plugin-dialogs.git

and to compile your project, use

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

Don't forget to install the cordova plugin dialogs with

cordova plugin add cordova-plugin-dialogs

How to use ?

See the official documentation cordova-plugin-dialogs

About

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

License:GNU Lesser General Public License v3.0


Languages

Language:OCaml 48.9%Language:Shell 25.8%Language:Makefile 25.3%