@capgo/capacitor-native-biometric 7.4.3 → 7.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,6 +9,19 @@
9
9
 
10
10
  Use biometrics confirm device owner presence or authenticate users. A couple of methods are provided to handle user credentials. These are securely stored using Keychain (iOS) and Keystore (Android).
11
11
 
12
+ ## Why Native Biometric?
13
+
14
+ A **free**, **comprehensive** biometric authentication plugin with secure credential storage:
15
+
16
+ - **All biometric types** - Face ID, Touch ID, Fingerprint, Face Authentication, Iris
17
+ - **Secure credential storage** - Keychain (iOS) and Keystore (Android) integration
18
+ - **Flexible fallback** - Optional passcode fallback when biometrics unavailable
19
+ - **Customizable UI** - Full control over prompts, titles, descriptions, button text
20
+ - **Detailed error codes** - Unified error handling across iOS and Android
21
+ - **Modern package management** - Supports both Swift Package Manager (SPM) and CocoaPods (SPM-ready for Capacitor 8)
22
+
23
+ Perfect for banking apps, password managers, authentication flows, and any app requiring secure user verification.
24
+
12
25
  ## Documentation
13
26
 
14
27
  The most complete doc is available here: https://capgo.app/docs/plugins/native-biometric/
@@ -9,7 +9,7 @@ import LocalAuthentication
9
9
 
10
10
  @objc(NativeBiometricPlugin)
11
11
  public class NativeBiometricPlugin: CAPPlugin, CAPBridgedPlugin {
12
- private let pluginVersion: String = "7.4.3"
12
+ private let pluginVersion: String = "7.4.4"
13
13
  public let identifier = "NativeBiometricPlugin"
14
14
  public let jsName = "NativeBiometric"
15
15
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-native-biometric",
3
- "version": "7.4.3",
3
+ "version": "7.4.4",
4
4
  "description": "This plugin gives access to the native biometric apis for android and iOS",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",