Reputation: 11
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 fingerprint
Upvotes: 1
Views: 855
Reputation: 159
In Authentication Option you will get all option please check once
authenticated = await auth.authenticate(
localizedReason:
'Scan your fingerprint (or face or whatever) to authenticate',
options: const AuthenticationOptions(
biometricOnly: false,
),
);
Upvotes: 0