Snap for 9815702 from 5f55e888ce to udc-release

Change-Id: I1b947b72ef016931f2875d060ed957d3428012bf
This commit is contained in:
Android Build Coastguard Worker 2023-03-25 03:03:37 +00:00
commit 06b0d5f577
2 changed files with 14 additions and 6 deletions

View file

@ -18,12 +18,12 @@
# Bluetooth LE Audio # Bluetooth LE Audio
PRODUCT_PRODUCT_PROPERTIES += \ PRODUCT_PRODUCT_PROPERTIES += \
ro.bluetooth.leaudio_switcher.supported=true \ ro.bluetooth.leaudio_switcher.supported=true \
bluetooth.profile.bap.unicast.client.enabled=true \ bluetooth.profile.bap.unicast.client.enabled?=true \
bluetooth.profile.csip.set_coordinator.enabled=true \ bluetooth.profile.csip.set_coordinator.enabled?=true \
bluetooth.profile.hap.client.enabled=true \ bluetooth.profile.hap.client.enabled?=true \
bluetooth.profile.mcp.server.enabled=true \ bluetooth.profile.mcp.server.enabled?=true \
bluetooth.profile.ccp.server.enabled=true \ bluetooth.profile.ccp.server.enabled?=true \
bluetooth.profile.vcp.controller.enabled=true \ bluetooth.profile.vcp.controller.enabled?=true \
# Bluetooth HAL and Pixel extension # Bluetooth HAL and Pixel extension
DEVICE_MANIFEST_FILE += \ DEVICE_MANIFEST_FILE += \

View file

@ -569,6 +569,14 @@
<item>3</item> <!-- COLOR_MODE_AUTOMATIC --> <item>3</item> <!-- COLOR_MODE_AUTOMATIC -->
</integer-array> </integer-array>
<!-- Override the "touch slop" value used by ViewConfiguration.
This prevents misclassification of gestures as long presses, by reducing the
distance that the pointer can travel while still being treated as "stationary".
The default value is 8dp, which is roughly 1.5mm on this device. On another
reference device, the touch slop was estimated at ~ 1 mm. Therefore, set the
touch slop to 8/1.5 =~ 5 dp to make it closer to the reference device. -->
<dimen name="config_viewConfigurationTouchSlop">5dp</dimen>
<!-- The default volume for the notification stream --> <!-- The default volume for the notification stream -->
<integer name="config_audio_notif_vol_default">0</integer> <integer name="config_audio_notif_vol_default">0</integer>