Need to get android supported biometric types

79 Views Asked by At

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 Biometric Type 
        }
    }
   
0

There are 0 best solutions below