diff options
author | Kevin Chyn <kchyn@google.com> | 2021-03-26 18:07:24 -0700 |
---|---|---|
committer | Kevin Chyn <kchyn@google.com> | 2021-03-26 18:07:24 -0700 |
commit | 0ec2e0c3ec589a01c98ca5d68ebc4fee0d972f6c (patch) | |
tree | 2d37ded9d8a1baf090950b5e4008b9145874cf8f | |
parent | 9b0b0b83ae0f9ac682dcaf1a37c586485d773db0 (diff) |
Change default IFingerprint HAL back to STRONG
This way, cuttlefish presubmit can run tests that require
multiple strong sensors
Bug: 163058911
Test: atest CtsBiometricsTestCases
Change-Id: I8ce66d3bc9fe8ea91465a6fcd5e7e75369b1a90f
-rw-r--r-- | biometrics/fingerprint/aidl/default/Fingerprint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/biometrics/fingerprint/aidl/default/Fingerprint.cpp b/biometrics/fingerprint/aidl/default/Fingerprint.cpp index 734ff600b7..fbfa52f0e7 100644 --- a/biometrics/fingerprint/aidl/default/Fingerprint.cpp +++ b/biometrics/fingerprint/aidl/default/Fingerprint.cpp @@ -22,7 +22,7 @@ namespace aidl::android::hardware::biometrics::fingerprint { namespace { constexpr size_t MAX_WORKER_QUEUE_SIZE = 5; constexpr int SENSOR_ID = 1; -constexpr common::SensorStrength SENSOR_STRENGTH = common::SensorStrength::WEAK; +constexpr common::SensorStrength SENSOR_STRENGTH = common::SensorStrength::STRONG; constexpr int MAX_ENROLLMENTS_PER_USER = 5; constexpr FingerprintSensorType SENSOR_TYPE = FingerprintSensorType::REAR; constexpr bool SUPPORTS_NAVIGATION_GESTURES = true; |