From 48b194d550232a4b2558c6901ab07cf5d5dd1c80 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 14 Nov 2022 23:27:15 +0000 Subject: [PATCH] switch identity back to V4 V5 was a temporary version, to handle mismatched import versions, but now that the temporary version (and differences) are removed, it's causing an error. Bug: 259146177 Change-Id: I0595c4e414701918a6f51128bbbb596633330c4c Test: N/A --- identity/aidl/Android.bp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/identity/aidl/Android.bp b/identity/aidl/Android.bp index c05dd33dc9..20904731a1 100644 --- a/identity/aidl/Android.bp +++ b/identity/aidl/Android.bp @@ -67,20 +67,20 @@ aidl_interface { cc_defaults { name: "identity_use_latest_hal_aidl_ndk_static", static_libs: [ - "android.hardware.identity-V5-ndk", + "android.hardware.identity-V4-ndk", ], } cc_defaults { name: "identity_use_latest_hal_aidl_ndk_shared", shared_libs: [ - "android.hardware.identity-V5-ndk", + "android.hardware.identity-V4-ndk", ], } cc_defaults { name: "identity_use_latest_hal_aidl_cpp_static", static_libs: [ - "android.hardware.identity-V5-cpp", + "android.hardware.identity-V4-cpp", ], }