Reputation: 4624
In one of our application we are planning to provide finger print recognition functionality (Note : we are not going to use mobile devices inbuilt fingerprint mechanism, we will be using external fingerprint hardware with usb connection to phone). After reading some articles online all the SDK's & APIs provided will be specific to a hardware manufacturer. Also they provide different SDKs for each OS which is ok, But no hardware manufacturer has any cordova plugin ( At least some I have read about ). Also most of the Hardware manufacturers don't have SDK's for iOS.
My question is is there any such universal cordova plugin. Or are there any such hardware manufacturers who has there own cordova plugin ?
Upvotes: 0
Views: 1637
Reputation: 5655
Publicly available plugin are these link1 and link2. But this handles inbuilt mobile hardware.
But in your case as you are using external fingerprint hardware with usb connection to phone, you may need to create your own custom plugin with an SDK which should be provided by that specific hardware vendors for variety of platforms.
Post which you will be able to invoke this plugin features from hybrid application.
A sample custom cordova plugin is this github sample which handles multiple platforms (iOS
, Android
, Windows
etc)
Flow will be like as follows
Hybrid application >> Call's method in Plugin >> Invokes Java Script Bridge which has all methods defined >> According to platform specific implementation features are invoked
Upvotes: 2