config.xml revision 42b1648212d31dbc63518ca8379f145fef1efcb8
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 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
20<!-- These resources are around just to allow their values to be customized
21     for different hardware and product builds. -->
22<resources>
23    <!-- Flag indicating whether the surface flinger has limited
24         alpha compositing functionality in hardware.  If set, the window
25         manager will disable alpha trasformation in animations where not
26         strictly needed. -->
27    <bool name="config_sf_limitedAlpha">false</bool>
28    
29    <!-- The duration (in milliseconds) of a short animation. -->
30    <integer name="config_shortAnimTime">100</integer>
31    
32    <!-- The duration (in milliseconds) of a medium-length animation. -->
33    <integer name="config_mediumAnimTime">150</integer>
34    
35    <!-- The duration (in milliseconds) of a long animation. -->
36    <integer name="config_longAnimTime">300</integer>
37
38    <!-- This string array should be overridden by the device to present a list of network attributes.  This is used by the connectivity manager to decide which networks can coexist based on the hardward -->
39    <!-- An Array of "[type-name],[associated radio-name],[priority]  -->
40    <string-array translatable="false" name="networkAttributes">
41        <item>"default,wifi,0"</item>
42        <item>"default,mobile,0"</item>
43        <item>"mms,mobile,1"</item>
44        <item>"supl,mobile,1"</item>
45        <item>"dun,mobile,1"</item>
46        <item>"hipri,mobile,2"</item>
47    </string-array>
48
49    <!-- This string array should be overridden by the device to present a list of radio attributes.  This is used by the connectivity manager to decide which networks can coexist based on the hardware -->
50    <!-- An Array of "[radio-name],[priority]                        -->
51    <!--              [# simultaneous connection types]"             -->
52    <string-array translatable="false" name="radioAttributes">
53        <item>"wifi,1,1"</item>
54        <item>"mobile,0,1"</item>
55    </string-array>
56
57    <!-- The number of degrees to rotate the display when the keyboard is open. -->
58    <integer name="config_lidOpenRotation">90</integer>
59
60    <!-- The number of degrees to rotate the display when the device is in a dock. -->
61    <integer name="config_dockedRotation">90</integer>
62
63    <!-- Flag indicating whether the keyguard should be bypassed when
64         the slider is open.  This can be set or unset depending how easily
65         the slider can be opened (for example, in a pocket or purse). -->
66    <bool name="config_bypass_keyguard_if_slider_open">true</bool>
67</resources>
68