biopassid_fingerprint_sdk 2.0.2 copy "biopassid_fingerprint_sdk: ^2.0.2" to clipboard
biopassid_fingerprint_sdk: ^2.0.2 copied to clipboard

BioPass ID Fingerprint SDK Flutter plugin.

2.0.2 #

  • Documentation update;
  • Upgrade minSdkVersion to 23 on Android;
  • Upgrade to Kotlin 1.9.10 on Android;
  • Added privacy manifest info on iOS.

2.0.1 #

  • Documentation update;
  • Bug fixes.

2.0.0 #

  • Documentation update;
  • FingerprintConfig refactoring:
    • Removed showFingerEllipseView and fingerColor, they are now in a new configuration class called FingerprintFingerEllipseOptions;
    • Removed showDistanceIndicatorView, distanceIndicatorLineColor, distanceIndicatorHighlightColor, tooCloseText and tooFarText, now they are in a new configuration class called FingerprintDistanceIndicatorOptions.

1.0.2 #

  • Documentation update;
  • Focus improvement for Android.

1.0.1 #

  • Documentation update;
  • Fixed back button padding for Android;
  • Fixed bug that caused a crash when pressing the back button for Android.

1.0.0 #

  • Documentation update;
  • Refactoring in onFingerCapture:
    • Now, in addition to the image list, an error message is also returned.
  • Removed automatic restart in case of fingerprint extraction failure:
    • Now, if the fingerprint extraction fails, a String will be returned with an error message.

Before #

final controller = FingerprintController(
  config: FingerprintConfig(licenseKey: 'your-license-key'),
);
final images = await controller.takeFingerprint();
print('onFingerCaptured: ${images[0][0]}');

Now #

final controller = FingerprintController(
  config: FingerprintConfig(licenseKey: 'your-license-key'),
  onFingerCapture: (images, error) {
    if (error != null) {
      print('onFingerCaptured: $error');
    } else {
      print('onFingerCaptured: ${images[0][0]}');
    }
  },
);
await controller.takeFingerprint();

0.1.4 #

  • Documentation update;
  • Bug fixes.

0.1.3 #

  • Documentation update;
  • Bug fixes.

0.1.2 #

  • Documentation update;
  • Fix in focus and exposure mode for Android.

0.1.1 #

  • Documentation update;
  • Correction in the resolution of the returned images for iOS;
  • Improvement in focus and exposure mode for Android.

0.1.0 #

  • Documentation update;
  • Removal of FingerprintCaptureListener;
  • Customizable UI.

0.0.10 #

  • Documentation update;
  • Focus adjustments for Android.

0.0.9 #

  • Documentation update;
  • License functionality fix for iOS.

0.0.8 #

  • Documentation update.

0.0.7 #

  • Documentation update;
  • Improved license functionality for iOS.

0.0.6 #

  • Finger capture;
  • Fingers segmentation;
  • Parameterizable distance, status and fingers indicators.
  • Documentation update;
  • dlib bug fix;
  • New licensing feature;
  • Finger indicator fix.
4
likes
115
pub points
55%
popularity

Publisher

verified publisherbiopassid.com

BioPass ID Fingerprint SDK Flutter plugin.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on biopassid_fingerprint_sdk