summaryrefslogtreecommitdiffstats
path: root/overlay/frameworks/base/core/res/res/values/config.xml
diff options
context:
space:
mode:
Diffstat (limited to 'overlay/frameworks/base/core/res/res/values/config.xml')
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 74d4119..3a1c60b 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -250,6 +250,25 @@
<!-- Allow the menu hard key to be disabled in LockScreen on some devices -->
<bool name="config_disableMenuKeyInLockScreen">true</bool>
+ <!-- Device configuration setting the minfree tunable in the lowmemorykiller in the kernel.
+ A high value will cause the lowmemorykiller to fire earlier, keeping more memory
+ in the file cache and preventing I/O thrashing, but allowing fewer processes to
+ stay in memory. A low value will keep more processes in memory but may cause
+ thrashing if set too low. Overrides the default value chosen by ActivityManager
+ based on screen size and total memory for the largest lowmemorykiller bucket, and
+ scaled proportionally to the smaller buckets. -1 keeps the default. -->
+ <integer name="config_lowMemoryKillerMinFreeKbytesAbsolute">122880</integer>
+
+ <!-- Device configuration adjusting the minfree tunable in the lowmemorykiller in the
+ kernel. A high value will cause the lowmemorykiller to fire earlier, keeping more
+ memory in the file cache and preventing I/O thrashing, but allowing fewer processes
+ to stay in memory. A low value will keep more processes in memory but may cause
+ thrashing if set too low. Directly added to the default value chosen by
+ ActivityManager based on screen size and total memory for the largest lowmemorykiller
+ bucket, and scaled proportionally to the smaller buckets. 0 keeps the default. -->
+ <integer name="config_lowMemoryKillerMinFreeKbytesAdjust">0</integer>
+
+
<!-- Disable the home key unlock setting -->
<!--bool name="config_disableHomeUnlockSetting">false</bool-->
@@ -313,4 +332,13 @@
format is UMTS|LTE|...
-->
<string translatable="false" name="config_radio_access_family">GPRS|EDGE|WCDMA</string>
+
+ <!-- Set this to true to enable the platform's auto-power-save modes like doze and
+ app standby. These are not enabled by default because they require a standard
+ cloud-to-device messaging service for apps to interact correctly with the modes
+ (such as to be able to deliver an instant message to the device even when it is
+ dozing). This should be enabled if you have such services and expect apps to
+ correctly use them when installed on your device. Otherwise, keep this disabled
+ so that applications can still use their own mechanisms. -->
+ <bool name="config_enableAutoPowerModes">true</bool>
</resources>