defaults.xml revision 00f58438bdb506d84015df45b5b3ff1594aab1d2
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright (c) 2009, 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<resources>
20    <bool name="def_dim_screen">true</bool>
21    <integer name="def_screen_off_timeout">60000</integer>
22    <bool name="def_airplane_mode_on">false</bool>
23    <!-- Comma-separated list of bluetooth, wifi, and cell. -->
24    <string name="def_airplane_mode_radios" translatable="false">cell,bluetooth,wifi</string>
25    <string name="airplane_mode_toggleable_radios" translatable="false">wifi</string>
26    <bool name="def_auto_time">true</bool>
27    <bool name="def_accelerometer_rotation">true</bool>
28    <!-- Default screen brightness, from 0 to 255.  102 is 40%. -->
29    <integer name="def_screen_brightness">102</integer>
30    <bool name="def_screen_brightness_automatic_mode">false</bool>
31    <fraction name="def_window_animation_scale">100%</fraction>
32    <fraction name="def_window_transition_scale">100%</fraction>
33    <bool name="def_haptic_feedback">true</bool>
34    
35    <bool name="def_bluetooth_on">false</bool>
36    <bool name="def_install_non_market_apps">false</bool>
37    <!-- Comma-separated list of location providers. 
38         Network location is off by default because it requires
39         user opt-in via Setup Wizard or Settings.  
40    -->
41    <string name="def_location_providers_allowed" translatable="false">gps</string>
42    <bool name="assisted_gps_enabled">true</bool>
43    <!--  0 == mobile, 1 == wifi. -->
44    <integer name="def_network_preference">1</integer>
45    <bool name="def_usb_mass_storage_enabled">true</bool>
46    <bool name="def_wifi_on">false</bool>
47    <bool name="def_networks_available_notification_on">true</bool>
48    
49    <bool name="def_backup_enabled">false</bool>
50    <string name="def_backup_transport" translatable="false"></string>
51    <!-- Default value for whether or not to pulse the notification LED when there is a 
52         pending notification -->
53    <bool name="def_notification_pulse">true</bool>
54
55    <bool name="def_mount_play_notification_snd">true</bool>
56    <bool name="def_mount_ums_autostart">false</bool>
57    <bool name="def_mount_ums_prompt">true</bool>
58    <bool name="def_mount_ums_notify_enabled">true</bool>
59    <bool name="set_install_location">true</bool>
60
61    <!-- user interface sound effects -->
62    <integer name="def_power_sounds_enabled">1</integer>
63    <string name="def_low_battery_sound" translatable="false">/system/media/ui/LowBattery.ogg</string>
64    <integer name="def_dock_sounds_enabled">0</integer>
65    <string name="def_desk_dock_sound" translatable="false">/system/media/audio/ui/Dock.ogg</string>
66    <string name="def_desk_undock_sound" translatable="false">/system/media/audio/ui/Undock.ogg</string>
67    <string name="def_car_dock_sound" translatable="false">/system/media/audio/ui/Dock.ogg</string>
68    <string name="def_car_undock_sound" translatable="false">/system/media/audio/ui/Undock.ogg</string>
69    <integer name="def_lockscreen_sounds_enabled">0</integer>
70    <string name="def_lock_sound" translatable="false">/system/media/audio/ui/Lock.ogg</string>
71    <string name="def_unlock_sound" translatable="false">/system/media/audio/ui/Unlock.ogg</string>
72
73</resources>
74