Snap for 9484614 from bcab8244c6 to udc-release

Change-Id: I83270cee947de453d9061c074800ff9b8b7a8c86
This commit is contained in:
Android Build Coastguard Worker 2023-01-13 02:03:36 +00:00
commit abaf3c028b
2 changed files with 14 additions and 1 deletions

View file

@ -219,6 +219,9 @@
<!-- Indicates whether to enable hinge angle sensor when using unfold animation --> <!-- Indicates whether to enable hinge angle sensor when using unfold animation -->
<bool name="config_unfoldTransitionHingeAngle">true</bool> <bool name="config_unfoldTransitionHingeAngle">true</bool>
<!-- If face auth sends the user directly to home/last open app, or stays on keyguard by default-->
<bool name="config_faceAuthDismissesKeyguard">true</bool>
<bool name="config_supportsConcurrentInternalDisplays">false</bool> <bool name="config_supportsConcurrentInternalDisplays">false</bool>
<!-- Radius of the software rounded corners at the top of primary display in its natural <!-- Radius of the software rounded corners at the top of primary display in its natural

View file

@ -79,7 +79,7 @@
</string> </string>
<!-- Camera 0 is the front camera --> <!-- Camera 0 is the front camera -->
<string translatable="false" name="config_protectedCameraId">0</string> <string translatable="false" name="config_protectedCameraId">1</string>
<!-- Comma-separated list of packages to exclude from camera protection. In our case, <!-- Comma-separated list of packages to exclude from camera protection. In our case,
ignore the gaze detection package --> ignore the gaze detection package -->
@ -129,5 +129,15 @@
<item>Binned Brightness 0 (wake-up)</item> <!-- HALF_OPENED --> <item>Binned Brightness 0 (wake-up)</item> <!-- HALF_OPENED -->
<item>Binned Brightness 0 (wake-up)</item> <!-- OPENED --> <item>Binned Brightness 0 (wake-up)</item> <!-- OPENED -->
</string-array> </string-array>
<!-- Whether to only support face auth on specific posture, default 0(DEVICE_POSTURE_UNKNOWN)
to support face all postures.
0 : DEVICE_POSTURE_UNKNOWN
1 : DEVICE_POSTURE_CLOSED
2 : DEVICE_POSTURE_HALF_OPENED
3 : DEVICE_POSTURE_OPENED
4 : DEVICE_POSTURE_FLIPPED
-->
<integer name="config_face_auth_supported_posture">1</integer>
</resources> </resources>