1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** Copyright 2022, 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 23 NOTE: The naming convention is "config_camelCaseValue". Some legacy 24 entries do not follow the convention, but all new entries should. --> 25 26<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 27 <!-- Default for DeviceIdleController.Constants.LIGHT_IDLE_MAINTENANCE_MIN_BUDGET --> 28 <integer name="device_idle_light_idle_maintenance_min_budget_ms">30000</integer> 29 30 <!-- Default for DeviceIdleController.Constants.LIGHT_IDLE_MAINTENANCE_MAX_BUDGET --> 31 <integer name="device_idle_light_idle_maintenance_max_budget_ms">180000</integer> 32 33 <!-- Default for DeviceIdleController.Constants.INACTIVE_TIMEOUT --> 34 <integer name="device_idle_inactive_to_ms">600000</integer> 35 36 <!-- Default for DeviceIdleController.Constants.LOCATING_TIMEOUT --> 37 <integer name="device_idle_locating_to_ms">100</integer> 38 39 <!-- Default for DeviceIdleController.Constants.IDLE_AFTER_INACTIVE_TIMEOUT --> 40 <integer name="device_idle_idle_after_inactive_to_ms">0</integer> 41 42 <!-- Default for DeviceIdleController.Constants.IDLE_TIMEOUT --> 43 <integer name="device_idle_idle_to_ms">5400000</integer> 44 45 <!-- Default for DeviceIdleController.Constants.MIN_TIME_TO_ALARM --> 46 <integer name="device_idle_min_time_to_alarm_ms">3600</integer> 47 48 <!-- Default for DeviceIdleController.Constants.MAX_TEMP_APP_ALLOWLIST_DURATION_MS --> 49 <integer name="device_idle_max_temp_app_allowlist_duration_ms">120000</integer> 50</resources> 51