1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright 2018 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<resources>
19    <!-- Weight of the main content in the illustration_layout -->
20    <integer name="content_weight">7</integer>
21
22    <!-- Weight of the illustration logo/video in the illustration_layout -->
23    <integer name="illustration_weight">5</integer>
24
25    <!-- Timeout to clear invalid lock pin/pattern/password -->
26    <integer name="clear_content_timeout_ms">2000</integer>
27
28    <!-- user switcher column number TODO: move to support library-->
29    <integer name="user_switcher_num_col">3</integer>
30
31    <!-- Number of times to select build number before enabling developer settings -->
32    <integer name="enable_developer_settings_click_count">7</integer>
33
34    <!-- Number of times to select build number before toast appears -->
35    <integer name="enable_developer_settings_clicks_to_show_toast_count">3</integer>
36
37    <!-- Maximum ems value for all settings buttons -->
38    <integer name="button_max_ems">9</integer>
39
40    <!-- Ems value for data usage bytes threshold picker -->
41    <integer name="data_usage_bytes_threshold_ems">15</integer>
42
43    <!-- Maximum size in pixels of default app icons -->
44    <integer name="default_app_safe_icon_size">500</integer>
45
46    <!-- Millisecond interval between app data update -->
47    <integer name="millisecond_app_data_update_interval">500</integer>
48
49    <!-- Millisecond interval between app data update -->
50    <integer name="millisecond_max_app_load_wait_interval">5000</integer>
51
52    <!-- Maximum number of networks to be shown in LimitedWifiEntryListPreferenceController -->
53    <integer name="limited_wifi_entry_list_count">3</integer>
54
55    <!-- Maximum number of apps to be shown in CameraRecentAccessesPreferenceController -->
56    <integer name="recent_camera_access_apps_list_count">2</integer>
57
58    <!-- Maximum number of apps to be shown in RecentNotificationsAppsPreferenceController -->
59    <integer name="recent_notifications_apps_list_count">3</integer>
60
61    <!-- Maximum number of apps to be shown in LocationRecentAccessesPreferenceController -->
62    <integer name="recent_location_access_apps_list_count">2</integer>
63
64    <!-- Maximum number of apps to be shown in MicrophoneRecentAccessesPreferenceController -->
65    <integer name="recent_microphone_access_apps_list_count">2</integer>
66
67    <!-- Maximum number of days old for a notification to be shown in
68     RecentNotificationsAppsPreferenceController -->
69    <integer name="recent_notifications_days_threshold">3</integer>
70
71    <!-- Maximum number of apps to be shown in RecentAppsItemManager -->
72    <integer name="recent_apps_max_count">3</integer>
73
74    <!-- Maximum number of days old for an app to be shown in RecentAppsItemManager -->
75    <integer name="recent_apps_days_threshold">1</integer>
76
77    <!-- Maximum number of device policies to be shown on ADD_DEVICE_ADMIN screen -->
78    <integer name="max_device_policies_shown">3</integer>
79
80    <!-- The usage that the audio route selector is for. 1 represents USAGE_MEDIA in
81    AudioAttributes. Currently only USAGE_MEDIA is supported for audio routing in the backend. -->
82    <integer name="audio_route_selector_usage">1</integer>
83
84    <!-- How long to display the message for the toast of audio route changing.
85     1 for LENGTH_LONG and 0 for LENGTH_SHORT. -->
86    <integer name="audio_route_toast_duration">0</integer>
87</resources>
88