Updated device configuration values.
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 24d8ffe..a5fc4e1 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -86,7 +86,7 @@
</string-array>
<!-- Minimum screen brightness allowed by the power manager. -->
- <integer name="config_screenBrightnessDim">8</integer>
+ <integer name="config_screenBrightnessDim">5</integer>
<!-- Default screen brightness setting.
Must be in the range specified by minimum and maximum. -->
@@ -94,12 +94,12 @@
<!-- Minimum screen brightness setting allowed by the power manager.
The user is forbidden from setting the brightness below this level. -->
- <integer name="config_screenBrightnessSettingMinimum">8</integer>
+ <integer name="config_screenBrightnessSettingMinimum">5</integer>
- <bool name="always_popup_usb_computer_connection_option">true</bool>
+ <bool name="always_popup_usb_computer_connection_option">false</bool>
<!-- Set this true only if the device has separate attention and notification lights. -->
- <bool name="config_useAttentionLight">true</bool>
+ <bool name="config_useAttentionLight">false</bool>
<!-- If this is true, the screen will fade off. -->
<bool name="config_animateScreenLights">true</bool>
@@ -146,6 +146,22 @@
<!-- Is the notification LED intrusive? Used to decide if there should be a disable option -->
<bool name="config_intrusiveNotificationLed">true</bool>
+ <!-- Flag indicating that the media framework should support playing of sounds on volume
+ key usage. This adds noticeable additional overhead to volume key processing, so
+ is disableable for products for which it is irrelevant. -->
+ <bool name="config_useVolumeKeySounds">false</bool>
+
+ <!-- Array of integer pairs controlling the rate at which the master volume changes
+ in response to volume up and down key events.
+ The first integer of each pair is compared against the current master volume
+ (in range 0 to 100).
+ The last pair with first integer <= the current volume is chosen,
+ and the second integer of the pair indicates the amount to increase the master volume
+ when volume up is pressed. -->
+ <integer-array name="config_masterVolumeRamp">
+ <item>0</item> <item>2</item> <!-- default: always increase volume by 5% -->
+ </integer-array>
+
<!-- Default color for notification LED is white. -->
<color name="config_defaultNotificationColor">#ffffffff</color>