|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<!-- |
| 3 | +/* |
| 4 | +** Copyright 2012, 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 | + |
| 24 | + <!-- Array of output values for LCD backlight corresponding to the LUX values |
| 25 | + in the config_autoBrightnessLevels array. This array should have size one greater |
| 26 | + than the size of the config_autoBrightnessLevels array. |
| 27 | + This must be overridden in platform specific overlays --> |
| 28 | + <!-- values from stock XXLQ1 framework --> |
| 29 | + <integer-array name="config_autoBrightnessLcdBacklightValues"> |
| 30 | + <item>40</item> |
| 31 | + <item>82</item> |
| 32 | + <item>150</item> |
| 33 | + <item>205</item> |
| 34 | + <item>255</item> |
| 35 | + </integer-array> |
| 36 | + |
| 37 | + <!-- Minimum screen brightness allowed by the power manager. --> |
| 38 | + <integer name="config_screenBrightnessDim">20</integer> |
| 39 | + |
| 40 | + <!-- This string array should be overridden by the device to present a list of network |
| 41 | + attributes. This is used by the connectivity manager to decide which networks can coexist |
| 42 | + based on the hardware --> |
| 43 | + <!-- An Array of "[Connection name],[ConnectivityManager connection type], |
| 44 | + [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] --> |
| 45 | + <!-- the 5th element "resore-time" indicates the number of milliseconds to delay |
| 46 | + before automatically restore the default connection. Set -1 if the connection |
| 47 | + does not require auto-restore. --> |
| 48 | + <!-- the 6th element indicates boot-time dependency-met value. --> |
| 49 | + <string-array translatable="false" name="networkAttributes"> |
| 50 | + <item>"wifi,1,1,1,-1,true"</item> |
| 51 | + <item>"mobile,0,0,0,-1,true"</item> |
| 52 | + <item>"mobile_mms,2,0,2,60000,true"</item> |
| 53 | + <item>"mobile_supl,3,0,2,60000,true"</item> |
| 54 | + <item>"mobile_dun,4,0,3,60000,true"</item> |
| 55 | + <item>"mobile_hipri,5,0,3,60000,true"</item> |
| 56 | + <item>"bluetooth,7,7,1,-1,true"</item> |
| 57 | + </string-array> |
| 58 | + |
| 59 | + <!-- This string array should be overridden by the device to present a list of radio |
| 60 | + attributes. This is used by the connectivity manager to decide which networks can coexist |
| 61 | + based on the hardware --> |
| 62 | + <!-- An Array of "[ConnectivityManager connectionType], |
| 63 | + [# simultaneous connection types]" --> |
| 64 | + <string-array translatable="false" name="radioAttributes"> |
| 65 | + <item>"1,1"</item> |
| 66 | + <item>"0,1"</item> |
| 67 | + <item>"7,1"</item> |
| 68 | + </string-array> |
| 69 | + |
| 70 | + <!--Boolean to enable stk functionality on Samsung phones--> |
| 71 | + <bool name="config_samsung_stk">true</bool> |
| 72 | + |
| 73 | +</resources> |
0 commit comments