Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
421 views

Facing pretty new problem with unfortunately dead library react-native-biometrics (same result with react-native-touch-id). On iOS 17.4 FaceID works as expected, i call prompt and app is waiting for ...
Radek Mezuláník's user avatar
11 votes
0 answers
1k views

With iOS 18 beta the FaceID authentication is not working for us in simulator context. It's crashing the Simulator, see: However with a real device on iOS 18 beta the biometry prompt appears and ...
balazs630's user avatar
  • 3,735
0 votes
1 answer
496 views

I have a theoretical question, how is a mobile app supposed to handle Face-id or biometrics being required before certain task. Let's say a banking app asks for Face ID on iPhone before making a ...
Flama's user avatar
  • 868
2 votes
0 answers
947 views

I'm working on a .NET MAUI project and trying to implement Face ID authentication using the Plugin.Fingerprint library. However, it seems the library prompts for fingerprint authentication instead of ...
mistelltein's user avatar
0 votes
1 answer
250 views

I am new to iOS development, and recently I was trying to build an application, which will create a key inside the secure element, and after - I will sing something with it. While developing I've ...
Vitaly's user avatar
  • 11
0 votes
1 answer
232 views

I'm trying to change a state bool var with faceID. My Test Code. import SwiftUI import LocalAuthentication struct PasswordEditTest: View { @State private var showPassword: Bool = false ...
neogaz's user avatar
  • 3
2 votes
1 answer
1k views

I'm integrating Permissions screen, in iOS App, where I have visual information about what security options are turned on or turned off, and I want to check whether the user has disabled Face ID for ...
Tornike Gomareli's user avatar
2 votes
0 answers
238 views

How can I detect if the user's attention is on iphone. The same function as the faceID, detect if the user is looking at the iphone. Tried the vision framework but I was not successfull. Any code or ...
XCozi's user avatar
  • 23
-1 votes
1 answer
163 views

I use biometric in my application. Users say that Face ID is disabled if the application is not used for about 3 days. After entering the password, the face ID becomes available again. Are there any ...
Igor Jorin's user avatar
5 votes
0 answers
1k views

I'm working on an iOS app that uses Face ID to access the app, but when they change their face id (add or remove), I want to detect that and get them to use their password (I've already built the ...
Amy's user avatar
  • 1,450
0 votes
1 answer
572 views

Is there any way (in swift) to know if the system faceId prompt is being presented? I can't see any event, notification or delegate method. I should avoid the presentation of a view triggered by an ...
rmvz3's user avatar
  • 1,173
-1 votes
1 answer
431 views

iPhone has a FaceID user registration or enrollment process through an option found in the settings section. Is it possible to trigger this process from within an app, using Swift code?
Dan709's user avatar
  • 65
0 votes
2 answers
6k views

I want to implement face authentication and TouchID (finger) in react native for both platform android and ios. I've implemented IOS side face authentication and TouchId authentication. I am using ...
Himanshu Prajapati's user avatar
0 votes
1 answer
234 views

I am new in flutter, i try to develop face id auth using flutter (3.0.5) and local_auth: ^2.1.2, but on ios it show error "@import local_auth" not found. Please help me.
prodip bhattacharjee's user avatar
0 votes
0 answers
452 views

Flutter ,Can constrain login with only one mobile fingerprint ? I used local-auth but application accept all mobile fingerprint was registered
Reham Mokhtar's user avatar
3 votes
0 answers
1k views

Currently I'm using expo-local-authentication and it works properly when Android device has touch id / fingerprint unlock possible also. Normal behaviour is when fingerprint is added and face ...
Piotr Witkoś's user avatar
0 votes
1 answer
1k views

Does anyone know what is the fix for the decricated import of ionic Plugins? I'm following a tutorial and I cant proceed until I fix it.. i used plugin npm install capacitor-face-id Enter link ...
Abdo Arahmane Wahna's user avatar
3 votes
0 answers
1k views

I want an implementation such that if both Face ID and fingerprint ID is enabled in user's device - my app will ask for authentication with Face ID, if only Face ID is enabled in user's device - my ...
Sparsh Dutta's user avatar
  • 3,078
-2 votes
1 answer
545 views

I am trying to return a boolean variable named isVerificated from a function named identityVerification, so I can use it in the tableView function. The function identityVerification starts ID ...
Lukas Kocian's user avatar
2 votes
1 answer
386 views

I am developing an app using Xcode 9.2 and Swift 4 to work on iPhones with Touch ID or Face ID capability. There will be a button that will show a fingerprint for iPhones with Touch ID and a friendly ...
TurboPascal's user avatar
1 vote
0 answers
82 views

Is it possible to explicitly access the IR camera of the iPhone's FaceID block using the IOS SDK (Swift), for example, to get an infrared image, or do we have the ability to use only the general ...
Евгений Иванов's user avatar
-1 votes
2 answers
3k views

Im currently building an iOS app that requires users to sign in using a username,passsword, and company ID. Customers would like to be able to sing in through Face ID. How can I associate each user ...
Franz Birkner's user avatar
1 vote
1 answer
1k views

We are using Azure B2C for login/authentication of our users. This works fine on our website (social and email login etc). Our mobile app is built in Xamarin forms and we are trying to build a native ...
KwackMaster's user avatar
0 votes
1 answer
3k views

if (navigator.credentials && window.PublicKeyCredential) { const available = await window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable(); if (available) { ...
Ilya's user avatar
  • 61
6 votes
1 answer
2k views

I want to check if the user has any type of screen lock set on their device (PIN, fingerprint, face, pattern, etc.). I don't want to simply check if the device is capable of for example biometrics, ...
Magnus's user avatar
  • 19.1k