简体   繁体   中英

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 fingerprint

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,
      ),
    );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM