Is there any way to get a list of biometric sensors which are already configured in the device.
For example if there are all sensors configured like;
- iris
- fingerprint
- face
I find all 3, but if any one of the 3 is configured, I want to get the one configured e.g. fingerprint
I have searched the docs but didn't find any clues other than we will get one but which one is never mentioned.
Any solution to solve the above problem would be very helpful.
For my curiosity why can't android provide the configured sensors, like we get when we require runtime permission?
Secondly how they prioritize the sensors if all 3 are configured?
BiometricPrompt
you have no control over which kind of biometric that will be used. Well, in Android R you can select whether or not you want to allow "Weak" biometrics (as defined in the Android CDD), but you can't specify fingerprint or face for example. – Christianachristiane