CustomAndroidUI will not use device password to authenticate, here's why
See original GitHub issueonSuccessWithManualPassword
was intended to be used when the developer will manually maintain
a separate app password. Which he will compare.
So you would want to resolve(password)
here, https://github.com/EddyVerbruggen/nativescript-fingerprint-auth/blob/7ab2ddef09204320ae9db8bf40312685d6bfe72b/src/fingerprint-auth.android.ts#L117
but by doing so, the functionality of using password won’t be same between using and not using custom UI.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
8 Fixes for Wi-Fi Authentication Errors on Android - MakeUseOf
2. Check the Wi-Fi Password ... An authentication error is often the result of entering an incorrect Wi-Fi password. If you aren't sure...
Read more >Use a security key for 2-Step Verification - Google Account Help
Organize your security keys The key's name defaults to “Security Key” unless you choose a custom name. You also have the option to...
Read more >Authentication best practices for Teams shared device ...
Best practices on shared android device management in Teams. This features Conditional Access, password policy, multi-factor authentication ...
Read more >Android Keystore system - Android Developers
To avoid unauthorized use of keys on the Android device, Android Keystore lets apps specify authorized uses of their keys when they generate...
Read more >Authenticate with Firebase using Password-Based Accounts ...
On the Sign in method tab, enable the Email/password sign-in method and click ... By using the Firebase Android BoM, your app will...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That’s up to your app to make clear, I guess.
Hey @shiv19, thanks for reporting this!
I always assumed that password entry widget of the custom UI was similar to the one on the default UI, but it turns out the custom UI relies on a custom password the user needs to configure for the app (instead of using the system-wide password).
For a number of reasons, I think the best solution is to just
resolve(password)
. I’ve added this to the demo app and the readme.