diff --git a/automotive/vehicle/2.0/default/impl/vhal_v2_0/EmulatedUserHal.cpp b/automotive/vehicle/2.0/default/impl/vhal_v2_0/EmulatedUserHal.cpp index f712ea20b3..2c2f23c4c6 100644 --- a/automotive/vehicle/2.0/default/impl/vhal_v2_0/EmulatedUserHal.cpp +++ b/automotive/vehicle/2.0/default/impl/vhal_v2_0/EmulatedUserHal.cpp @@ -158,6 +158,20 @@ android::base::Result> EmulatedUserHal::onSetS return sendUserHalResponse(std::move(mSwitchUserResponseFromCmd), requestId); } + if (value.value.int32Values.size() > 1) { + auto messageType = static_cast(value.value.int32Values[1]); + switch (messageType) { + case SwitchUserMessageType::LEGACY_ANDROID_SWITCH: + ALOGI("request is LEGACY_ANDROID_SWITCH; ignoring it"); + return {}; + case SwitchUserMessageType::ANDROID_POST_SWITCH: + ALOGI("request is ANDROID_POST_SWITCH; ignoring it"); + return {}; + default: + break; + } + } + // Returns default response auto updatedValue = std::unique_ptr(new VehiclePropValue); updatedValue->prop = SWITCH_USER;