From d1ac2781f92c2442819563ebc3f27bd28bbb9cc1 Mon Sep 17 00:00:00 2001 From: Gaurav Sarode Date: Fri, 23 Feb 2024 15:57:12 -0800 Subject: [PATCH] Fix properties to enable override AAOS_on_phone targets need to override these properties, without that builds are failing. bug: 326659788 Test: local build Change-Id: I272b79140abf4ab355a35e856d1c5be2d5e066c7 --- device-husky.mk | 14 +++++++------- device-shiba.mk | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/device-husky.mk b/device-husky.mk index 7b97192..4f55bbd 100644 --- a/device-husky.mk +++ b/device-husky.mk @@ -199,13 +199,13 @@ PRODUCT_PRODUCT_PROPERTIES += \ # Bluetooth LE Audio PRODUCT_PRODUCT_PROPERTIES += \ - ro.bluetooth.leaudio_switcher.supported=true \ - bluetooth.profile.bap.unicast.client.enabled=true \ - bluetooth.profile.csip.set_coordinator.enabled=true \ - bluetooth.profile.hap.client.enabled=true \ - bluetooth.profile.mcp.server.enabled=true \ - bluetooth.profile.ccp.server.enabled=true \ - bluetooth.profile.vcp.controller.enabled=true + ro.bluetooth.leaudio_switcher.supported?=true \ + bluetooth.profile.bap.unicast.client.enabled?=true \ + bluetooth.profile.csip.set_coordinator.enabled?=true \ + bluetooth.profile.hap.client.enabled?=true \ + bluetooth.profile.mcp.server.enabled?=true \ + bluetooth.profile.ccp.server.enabled?=true \ + bluetooth.profile.vcp.controller.enabled?=true ifeq ($(RELEASE_PIXEL_BROADCAST_ENABLED), true) PRODUCT_PRODUCT_PROPERTIES += \ diff --git a/device-shiba.mk b/device-shiba.mk index 9a3ba7b..eed22c6 100644 --- a/device-shiba.mk +++ b/device-shiba.mk @@ -186,13 +186,13 @@ PRODUCT_PRODUCT_PROPERTIES += \ # Bluetooth LE Audio PRODUCT_PRODUCT_PROPERTIES += \ - ro.bluetooth.leaudio_switcher.supported=true \ - bluetooth.profile.bap.unicast.client.enabled=true \ - bluetooth.profile.csip.set_coordinator.enabled=true \ - bluetooth.profile.hap.client.enabled=true \ - bluetooth.profile.mcp.server.enabled=true \ - bluetooth.profile.ccp.server.enabled=true \ - bluetooth.profile.vcp.controller.enabled=true + ro.bluetooth.leaudio_switcher.supported?=true \ + bluetooth.profile.bap.unicast.client.enabled?=true \ + bluetooth.profile.csip.set_coordinator.enabled?=true \ + bluetooth.profile.hap.client.enabled?=true \ + bluetooth.profile.mcp.server.enabled?=true \ + bluetooth.profile.ccp.server.enabled?=true \ + bluetooth.profile.vcp.controller.enabled?=true ifeq ($(RELEASE_PIXEL_BROADCAST_ENABLED), true) PRODUCT_PRODUCT_PROPERTIES += \