Not all features of native SDKs are available in PhoneGap wrapper.
The BlinkID-phonegap wrapper is open source, so you can easily add features that you need.
For 100% of features and maximum control, consider using native SDKs.
Dependencies
MicroBlink.framework/MicroBlink file in iOS submodule exceeds GitHubs limited file size of 100MB. To correctly init the submodule Git LFS is needed. Git LFS can be installed with homebrew:
brew install git-lfs
After installation, don't forget to restart the terminal!
Clone or Download repository
Downloading a repository just downloads the files from the most recent commit of the default branch but without all the dependencies which are in submodules. We recommend that you clone directory. With a clone option you will get a copy of the history and it’s functional git repository.
To clone repository:
- Copy URL from Clone or download button: https://github.com/BlinkID/blinkid-phonegap.git
- Open terminal on Mac/Linux or GitBash on Windows.
- cd into directory where you want the cloned directory to be made.
- Type
git clone
, than past URL - Press enter
Submodules
After cloning repository, make sure you clone also its submodules.
From terminal simply cd into BlinkID-phonegap and execute commands:
git submodule init
git submodule update
Sample
Here's a complete example of how to create and build a project for Android and iOS using phonegap):
# pull the plugin and sample application from Github
git clone https://github.com/BlinkID/blinkid-phonegap.git
# initialize and update submodules
git submodule init
git submodule update
# create a empty application
phonegap create testphonegap
cd testphonegap
# add the blinkID plugin
phonegap plugin add ../blinkid-phonegap/BlinkID
# build the project, the binary will appear in the bin/ folder
phonegap build android
# build the project
phonegap build ios
You can also use provided initDemoApp.sh
script that will generate a demo app that uses the plugin:
./initDemoApp.sh
To run the script, you'll need BASH environment on Windows (Linux and MacOS use BASH by default).
Github repository: https://github.com/BlinkID/blinkid-phonegap
Video tutorial: https://github.com/BlinkID/blinkid-phonegap#video-tutorial
Comments