1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2023 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License.
16  -->
17
18<!-- These resources are around just to allow their values to be customized
19     for different hardware and product builds. -->
20<resources>
21    <!-- Svelte specific logic, see RecentsConfiguration.SVELTE_* constants. -->
22    <integer name="recents_svelte_level">3</integer>
23
24    <!-- Show a separate icon for low and high volume on the volume dialog -->
25    <bool name="config_showLowMediaVolumeIcon">true</bool>
26
27    <!-- Change the volume row tint when it is inactive, i.e. when it is being dismissed -->
28    <bool name="config_changeVolumeRowTintWhenInactive">false</bool>
29
30    <!-- The duraction of the show animation for the volume dialog in milliseconds -->
31    <integer name="config_dialogShowAnimationDurationMs">600</integer>
32
33    <!-- The duraction of the hide animation for the volume dialog in milliseconds -->
34    <integer name="config_dialogHideAnimationDurationMs">400</integer>
35
36    <!-- Whether to use window background blur for the volume dialog. -->
37    <bool name="config_volumeDialogUseBackgroundBlur">true</bool>
38
39    <!-- Whether to tint the icon of the sensor hardware privacy toggle unblock dialog.
40        Set to false if using a custom icon. -->
41    <bool name="config_unblockHwSensorIconEnableTint">true</bool>
42
43    <!-- Configuration to set Learn more in device logs as URL link -->
44    <bool name="log_access_confirmation_learn_more_as_link">false</bool>
45</resources>
46