1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 2015, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10**     http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<!-- These resources are around just to allow their values to be customized
21     for different hardware and product builds.  Do not translate. -->
22<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
23    <!-- Enable multi-user. -->
24    <bool name="config_enableMultiUserUI">true</bool>
25    <!-- Maximum number of users we allow to be running at a time.
26         For automotive, background user will be immediately stopped upon user switching but
27         up to this many users can be running in garage mode.
28         3 = headless user 0 + two primary users or 1 primary + 1 guest -->
29    <integer name="config_multiuserMaxRunningUsers">3</integer>
30    <!-- Use delay loccking mode always for automotive -->
31    <bool name="config_multiuserDelayUserDataLocking">true</bool>
32    <!-- If true, all guest users created on the device will be ephemeral. -->
33    <bool name="config_guestUserEphemeral">true</bool>
34    <!-- Car Mode -->
35    <integer name="config_defaultUiModeType">3</integer>
36    <!-- Can't leave car mode -->
37    <bool name="config_lockUiMode">true</bool>
38    <!--  Control whether to launch Car dock home app when user presses home button or when
39          car dock intent is fired.
40          In mobile device, usually separate home app is expected in car mode, and this should be
41          enabled. But in environments like real car, default home app may be enough, and in that
42          case, this can be disabled (set to false). -->
43    <bool name="config_enableCarDockHomeLaunch">false</bool>
44    <!--  Control whether to lock day/night mode change from normal application. When it is
45          true, day / night mode change is only allowed to apps with MODIFY_DAY_NIGHT_MODE
46          permission. -->
47    <bool name="config_lockDayNightMode">true</bool>
48    <!-- Allow smart unlock immediately after boot because the user shouldn't have to enter a pin
49         code to unlock their car head unit. -->
50    <bool name="config_strongAuthRequiredOnBoot">false</bool>
51    <!-- Show Navigation Bar -->
52    <bool name="config_showNavigationBar">true</bool>
53
54    <integer name="config_jobSchedulerInactivityIdleThreshold">0</integer>
55    <integer name="config_jobSchedulerIdleWindowSlop">0</integer>
56
57    <!-- Automotive Bluetooth pairing option -->
58    <bool name="enable_pbap_pce_profile">true</bool>
59
60    <!-- Whether the device supports quick settings and its associated APIs -->
61    <bool name="config_quickSettingsSupported">false</bool>
62
63    <!-- Flag indicating that the entire notification header can be clicked to expand the
64         notification. If false, then the expand icon has to be clicked in order for the expand
65         to occur. -->
66    <bool name="config_notificationHeaderClickableForExpand">true</bool>
67
68    <!-- Night mode should be enabled. -->
69    <bool name="config_enableNightMode">true</bool>
70
71    <!-- The action buttons should always take the default color. -->
72    <bool name="config_tintNotificationActionButtons">false</bool>
73
74    <!-- Corner radius of system dialogs -->
75    <dimen name="config_dialogCornerRadius">16dp</dimen>
76
77    <!-- Set CarUsbHandler as the USB handling component by default -->
78    <string name="config_UsbDeviceConnectionHandling_component">android.car.usb.handler/android.car.usb.handler.UsbHostManagementActivity</string>
79
80    <string name="config_headlineFontFamilyMedium">sans-serif-medium</string>
81
82    <!-- Whether the system enables per-display focus. If the system has the input method for each
83         display, this value should be true. -->
84    <bool name="config_perDisplayFocusEnabled">true</bool>
85
86    <!-- True if the device supports split screen as a form of multi-window. -->
87    <bool name="config_supportsSplitScreenMultiWindow">false</bool>
88
89    <!-- True if the device supports system decorations on secondary displays. -->
90    <bool name="config_supportsSystemDecorsOnSecondaryDisplays">false</bool>
91
92    <string name="config_dataUsageSummaryComponent">com.android.car.settings/com.android.car.settings.datausage.DataWarningAndLimitActivity</string>
93
94    <bool name="config_automotiveHideNavBarForKeyboard">true</bool>
95
96    <!-- Turn off Wallpaper service -->
97    <bool name="config_enableWallpaperService">false</bool>
98
99    <!-- Automotive explicitly controls when the system suspends. Do not use autoSuspend. -->
100    <bool name="config_enableAutoSuspend" translatable="false">false</bool>
101</resources>
102