Use the same property makefile variable as the phones we're overriding Problem: A change updated the makefile variable we're using to set system properties from PRODUCT_PRODUCT_PROPERTIES to PRODUCT_PROPERTY_OVERRIDES, which had the impact of our car phone builds failing to replace the ?= defined defaults that the phone supplied such that we currently enable nearly all Bluetooth profiles. Solution: We can use the same makefile variable as the phones we're overriding to allow their defaults to be replaced with our desired values. Bug: 318386540 Test: m Test: adb shell getprop | grep -ie bluetooth Change-Id: Ida5e4173b42fb8772cd9cb738f168e955baa47eb
diff --git a/common/post_google_car.mk b/common/post_google_car.mk index beea48c..5adf15a 100644 --- a/common/post_google_car.mk +++ b/common/post_google_car.mk
@@ -61,7 +61,7 @@ persist.eab.supported=0 # Explicitly disable support for some Bluetooth profiles included in base phone builds -PRODUCT_PROPERTY_OVERRIDES += \ +PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.asha.central.enabled=false \ bluetooth.profile.a2dp.source.enabled=false \ bluetooth.profile.avrcp.target.enabled=false \