Questions tagged [android-biometric]
128 questions
0
votes
1 answer
How to display a cancel button when user selects alternative screen unlock method in BiometricPrompt.promptinfo
I am trying to use BiometricPrompt for app authentication. When the user launches the app, the biometric prompt is displayed, if the user wishes to use the PIN/Pattern/Password, they can do so by selecting the option to go to the pin prompt (as per…

AashishKSahu
- 335
- 2
- 15
0
votes
1 answer
How to check if device has fingerprint hardware/sensor and fingerprint is enabled or not in android using BiometricManager
I want to integrate Biometric detection in my app. I want to check 2 condition before show the BiometricPromt authentication to the user:
Detect the Biometric sensor/hardware available or not in the device.
Detect any Biometric is enrolled or not…

Menu
- 677
- 1
- 12
- 30
0
votes
0 answers
Biometric Authentication in jetpack compose
In my Android app, I have an activity that extends ComponentActivity and includes multiple Jetpack Compose composable functions. One of these composable functions is accessed by the user, and I want to show a biometric prompt for fingerprint…

Adev
- 43
- 1
- 1
- 7
0
votes
0 answers
Biometric Prompt from background?
I am trying to launch a biometric prompt from the background. Basically I added a piece of code to the SystemUi of AOSP and any app can make a request to the SystemUi to have this biometric overlay show up. But now I am migrating from the…

Markusbug
- 31
- 6
0
votes
0 answers
Need to get android supported biometric types
I wants to get supported Biometric type user can authenticate.
val biometricManager = BiometricManager.from(this)
when (biometricManager.canAuthenticate()) {
BiometricManager.BIOMETRIC_SUCCESS -> {
//In here I needs to get the…

Imesh Madushanka
- 45
- 1
- 7
0
votes
0 answers
How do you disable biometric login from your android app?
I've enabled biometric login for my app, but I don't know how to disable it for my app, other than go through setting on the device and turn it off for each app.
BiometricManager doesn't have an api to do this.

Kristy Welsh
- 7,828
- 12
- 64
- 106
0
votes
0 answers
Detecting fingerprint changes in an Android application without calling the device biometric prompt
I am trying to develop a function in my Android application that will alert me when a user changes the device fingerprint without having to call the device biometric prompt. I have attempted this using a biometric library in my code.
I only…

Amjad Almgati
- 1
- 1
0
votes
0 answers
Keystore operation fails after Biometric Operation despite success method called on callback
I am attempting to perform a signing operation with a secret key that can only be used after user authenticates with their device biometrics. I have the logic like this
val mac = initMac(keyAlias)
val biometricPrompt =…

Oyebisi
- 562
- 2
- 9
- 23
0
votes
1 answer
Don't check face Id scan in local_auth package flutter
How to disable face Id scan in local_auth flutter for Android. Athenticate with only fingerprint. Or can i do it on native Android side
On android settings if registered FaceID and Fingerprint by default it's check faceid but i won't use only…
0
votes
1 answer
Unlock a mobile app using refresh token by biometric login
wondering if anyone could help me
What I know about the relationship between biometric authentication and refresh token is as follow:
After the user finishes signing in, I receive tokens from the server, I store the refresh token in local storage…
0
votes
0 answers
Flutter : how to scan external biometric device like mantra morpho secugen for services LIKE AEPS
Required finger print data in xml format which device will send auto.
needs to attach and call device, very new to flutter. i have done this in website using javascript.

dharmx
- 694
- 1
- 13
- 20
0
votes
2 answers
How to register biometric fingerprint in flutter app
Is there a way to register user biometric directly from flutter app?

A.Badawy
- 1
- 1
0
votes
0 answers
How to get if user click on use patterns button or user moves to patter pin screen from biometric prompt with Flutter - local_auth?
Is there any way we can detect when user navigate to password/pin screen when clicking on use patterns button or when system redirects them after some wrong attempts?

user3066829
- 157
- 1
- 1
- 12
0
votes
0 answers
Integrate Biometric for existing application
I’m a beginner engineer, all I want to know is how we can integrate biometric authentication to existing projects. I’m aware of the biometric authentication process and tried as an example and it worked out . Please show me a way to find this one.…
0
votes
1 answer
setInvalidatedByBiometricEnrollment does not throw exception with fingerprint added or removed
I would like to remove credentials if any of current fingerprints are removed or new one is added after the app setup biometric.
Creating key like:
private Key getKey(String KEY_ALIAS) throws GeneralSecurityException, IOException {
…

Maihan Nijat
- 9,054
- 11
- 62
- 110