1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2014 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<resources> 18 19 <!-- Do not enable auto rotation switching --> 20 <bool name="def_accelerometer_rotation">false</bool> 21 22 <!-- Disable the lockscreen --> 23 <bool name="def_lockscreen_disabled">true</bool> 24 25 <!-- Keep screen on at all times by default --> 26 <bool name="def_stay_on_while_plugged_in">true</bool> 27 28 <!-- Do not give up on DHCP --> 29 <integer name="def_max_dhcp_retries">0</integer> 30 31 <!-- disable network monitoring support 32 NOTE: we may need to reenable this in a future release 33 to support new developer oriented monitoring tools --> 34 <bool name="def_netstats_enabled">false</bool> 35 36 <!-- ms until the system goes to sleep, 24 hours default for TV devices --> 37 <integer name="def_sleep_timeout">86400000</integer> 38 39 <!-- Default screen timeout set when setting screensaver. Currently (15 * 60 * 1000) = 15 min --> 40 <integer name="def_screen_off_timeout">900000</integer> 41 42 <!-- Don't turn Wifi back on automatically --> 43 <bool name="def_wifi_wakeup_enabled">false</bool> 44 45 <!-- Allow users to use both the on-screen keyboard, as well as a real keyboard --> 46 <bool name="def_show_ime_with_hard_keyboard">true</bool> 47 48</resources> 49