dubai: Introduce biometric 2.3 hal

* wrap 2.1 hal and add additional function

Change-Id: I4a66760fb8ca88de4e9229b7aec90052470ce6f0
This commit is contained in:
TheScarastic 2022-09-23 16:05:58 +05:30 committed by Marc Bourgoin
commit da9f091436
7 changed files with 257 additions and 1 deletions

21
fingerprint/Android.bp Normal file
View file

@ -0,0 +1,21 @@
cc_binary {
name: "android.hardware.biometrics.fingerprint@2.3-service.dubai",
defaults: ["hidl_defaults"],
init_rc: ["android.hardware.biometrics.fingerprint@2.3-service.dubai.rc"],
vintf_fragments: ["android.hardware.biometrics.fingerprint@2.3-service.dubai.xml"],
relative_install_path: "hw",
srcs: [
"service.cpp",
"BiometricsFingerprint.cpp",
],
vendor: true,
shared_libs: [
"libbase",
"libhidlbase",
"liblog",
"libutils",
"android.hardware.biometrics.fingerprint@2.1",
"android.hardware.biometrics.fingerprint@2.2",
"android.hardware.biometrics.fingerprint@2.3",
],
}