For the complete documentation index, see llms.txt. This page is also available as Markdown.

Fingerprint Capture - Phingers

This plugin is responsible for capturing the user's fingerprints and subsequently extracting the fingerprint templates.

Its main features are as follows:

  • Two operating modes: extraction of the four fingers of the hand (except the thumb), or extraction of only the thumb.

  • Internal camera management.

  • Permission management.

  • Built-in liveness detection.

  • Assistant in fingerprint capture processes.

  • Generation of templates with fingerprint characteristics, images, and scores.

Dependencies

Capacitor:

npm install @facephi/sdk-phingers-capacitor@<Version>
npm run build
npx cap sync

Android - Gradle:

implementation "com.facephi.androidsdk:phingers_tf_component:$version"

iOS - CocoaPods:

startPhingers Method

Once the SDK has been started and a new operation has been created, the component can be launched. Any of its controllers can be used to execute its functionality.

Launching the fingerprint reader:

Basic configuration

To launch the current component, an object PhingersConfiguration must be created, which will be the configuration of the component controller.

The basic configuration needed for this is as follows:

Phingers Configuration

Advanced component configuration

Below are all the fields that are part of this class.

Result reception

The launch will return the information in the format PhingersResult. It being possible to distinguish between a successful launch and an unsuccessful one:

Below are all the fields that are part of this class.

Phingers Result

Last updated