https://github.com/chrisekelley/secugenplugin
Cordova 3.x plugin for Secugen fingerprint scanners
https://github.com/chrisekelley/secugenplugin
Last synced: about 1 month ago
JSON representation
Cordova 3.x plugin for Secugen fingerprint scanners
- Host: GitHub
- URL: https://github.com/chrisekelley/secugenplugin
- Owner: chrisekelley
- Created: 2014-05-07T09:45:15.000Z (about 11 years ago)
- Default Branch: RESTclient
- Last Pushed: 2017-04-23T11:57:37.000Z (about 8 years ago)
- Last Synced: 2025-04-02T19:47:00.305Z (3 months ago)
- Language: Java
- Size: 1.62 MB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cordova 3.x plugin for Secugen fingerprint scanners
This plugin is for Phonegap/Cordova 3.x.
I'm not distributing the FDxSDKProAndroid.jar and its supporting armeabi dir - you must add those yourself and un-comment the relevant code.
This version uses a REST client to upload fingerprint images for templating and identification.
[Kiwi-Cordova](https://github.com/chrisekelley/kiwi-cordova) is a Cordova project that implements this plugin.
# Installation
I have not yet uploaded this to NPM, so you must clone this project and install it using the following commands:
plugman install --platform android --project /pathToCordovaApp/platforms/android --plugin /Users/user/source/SecugenPlugin
rm -rf ../../plugins/org.rti.kidsthrive.secugen
cp -Rf cordova/plugins/org.rti.kidsthrive.secugen ../../plugins# Configuration
In your Cordova project's platforms/android/res/values/strings.xml, set the following values:
/sdcard/Download/fprints/
http://somewhere.com/
api/Person/Enroll
authenticationKey
TEMPLATE_FORMAT_ISO19794
projectName# Development
Code for updating the plugin in your Cordova project:
cordova build
plugman uninstall --platform android --project /pathToCordovaApp/platforms/android --plugin org.rti.kidsthrive.secugen
plugman install --platform android --project /pathToCordovaApp/platforms/android --plugin /Users/user/source/SecugenPlugin
rm -rf ../../plugins/org.rti.kidsthrive.secugen
cp -Rf cordova/plugins/org.rti.kidsthrive.secugen ../../plugins
cordova run android