Skip to content

Commit

Permalink
Remove redundant values from config.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel authored Dec 29, 2019
1 parent 43bb5f6 commit ac9001b
Showing 1 changed file with 0 additions and 79 deletions.
79 changes: 0 additions & 79 deletions overlay/frameworks/base/core/res/res/values/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,85 +20,6 @@
<!-- These resources are around just to allow their values to be customized
for different hardware and product builds. Do not translate. -->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
The N entries of this array define N 1 zones as follows:
Zone 0: 0 <= LUX < array[0]
Zone 1: array[0] <= LUX < array[1]
...
Zone N: array[N - 1] <= LUX < array[N]
Zone N + 1 array[N] <= LUX < infinity
Must be overridden in platform specific overlays -->
<integer-array name="config_autoBrightnessLevels">
<item>16</item>
<item>64</item>
<item>144</item>
<item>256</item>
<item>400</item>
<item>576</item>
<item>784</item>
<item>1024</item>
<item>1296</item>
<item>1600</item>
<item>1936</item>
<item>2304</item>
<item>2704</item>
<item>3136</item>
<item>3600</item>
<item>4096</item>
</integer-array>

<!-- Array of output values for LCD backlight corresponding to the LUX values
in the config_autoBrightnessLevels array. This array should have size one greater
than the size of the config_autoBrightnessLevels array.
This must be overridden in platform specific overlays -->
<integer-array name="config_autoBrightnessLcdBacklightValues">
<item>10</item> <!-- 0 -->
<item>16</item> <!-- 16 -->
<item>32</item> <!-- 64 -->
<item>48</item> <!-- 144 -->
<item>64</item> <!-- 256 -->
<item>80</item> <!-- 400 -->
<item>96</item> <!-- 576 -->
<item>112</item> <!-- 784 -->
<item>128</item> <!-- 1024 -->
<item>144</item> <!-- 1296 -->
<item>160</item> <!-- 1600 -->
<item>176</item> <!-- 1936 -->
<item>192</item> <!-- 2304 -->
<item>208</item> <!-- 2704 -->
<item>224</item> <!-- 3136 -->
<item>240</item> <!-- 3600 -->
<item>255</item> <!-- 4096 -->
</integer-array>

<!-- Minimum screen brightness setting allowed by the power manager.
The user is forbidden from setting the brightness below this level. -->
<integer name="config_screenBrightnessSettingMinimum">10</integer>

<!-- Screen brightness used to dim the screen while dozing in a very low power state.
May be less than the minimum allowed brightness setting
that can be set by the user. -->
<integer name="config_screenBrightnessDoze">5</integer>

<!-- Screen brightness used to dim the screen when the user activity
timeout expires. May be less than the minimum allowed brightness setting
that can be set by the user. -->
<integer name="config_screenBrightnessDim">10</integer>

<!-- Minimum allowable screen brightness to use in a very dark room.
This value sets the floor for the darkest possible auto-brightness
adjustment. It is expected to be somewhat less than the first entry in
config_autoBrightnessLcdBacklightValues so as to allow the user to have
some range of adjustment to dim the screen further than usual in very
dark rooms. The contents of the screen must still be clearly visible
in darkness (although they may not be visible in a bright room). -->
<integer name="config_screenBrightnessDark">5</integer>

<!-- Whether device supports double tap to wake -->
<bool name="config_supportDoubleTapWake">true</bool>

<!-- MMS user agent prolfile url -->
<string name="config_mms_user_agent_profile_url" translatable="false">http://uaprof.sonymobile.com/E6853R3211.xml</string>

Expand Down

0 comments on commit ac9001b

Please sign in to comment.