1

Authentication Dialog - Credentials Only Auth

In API 30+ it is now possible to have the BiometricPrompt.Builder (used by the Authentication dialog) require only credentials. In the US, the government may compel the owner of a phone to unlock it using their fingerprint since the government views a fingerprint as "public record" versus where a password is not. Besides, a person who is sleeping can have their fingerprints used against them while unconcious.

As such, I feel that the Authentication dialog should allow the user of Tasker to specify that it should only ask for the device's password without prompting at all for biometrics.

This is now supported on API 30+, along with two levels of biometric security options: weak, strong (bonus feature, lol) . See setAllowedAuthenticators(). This also involves overhauling existing code in Tasker that is deprecated: setDeviceCredentialsAllowed(). Now, you are supposed to perform it via setAllowedAuthenticators(), where it accepts a bitmask of the allowed authenticators. Given the numerous changes, it may be complicated to simply edit the existing Action while maintaining backwards Task compatibility, but not impossible.

Given the interest in Work Profiles and Android Enterprise, this seems like a necessary evil to protect the actions those APIs can expose to Tasker users.