Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d769b178 authored by Steven Liu's avatar Steven Liu
Browse files

Add the 'UNSUPPORTED' security level for the default ranging aidl

service.

Bug: 394482061
Test: build
Change-Id: I5f3d6870fb8efd3e4cc98c910653fe5934b379b9
parent bcf8e249
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -58,7 +58,8 @@ ndk::ScopedAStatus BluetoothChannelSounding::openSession(

ndk::ScopedAStatus BluetoothChannelSounding::getSupportedCsSecurityLevels(
    std::vector<CsSecurityLevel>* _aidl_return) {
  std::vector<CsSecurityLevel> supported_security_levels = {};
  std::vector<CsSecurityLevel> supported_security_levels = {
      CsSecurityLevel::NOT_SUPPORTED};
  *_aidl_return = supported_security_levels;
  return ::ndk::ScopedAStatus::ok();
}