Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0226addb authored by Steve Kondik's avatar Steve Kondik
Browse files

readd compcache settings

parent 87b3846b
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -118,6 +118,10 @@
    <string name="performance_settings_title">Performance settings</string>
    <string name="performance_settings_summary">Device performance tweaks</string>

    <!-- Performance Settings : Compcache -->
    <string name="pref_compcache_title">Compcache RAM Usage</string>
    <string name="pref_compcache_summary">Compress memory for increased virtual capacity (requires reboot)</string>

    <!-- Performance Settings : JIT Mode -->
    <string name="pref_jit_mode_title">Use JIT</string>
    <string name="pref_jit_mode_summary">Use the Dalvik just-in-time compiler (requires reboot)</string>
@@ -130,6 +134,14 @@
    <string name="pref_heapsize_title">VM heap size</string>
    <string name="pref_heapsize_summary">Maximum amount of memory per VM heap (requires reboot)</string>

    <!-- Performance : Lock home memory -->
    <string name="pref_lock_home_title">Lock home in memory</string>
    <string name="pref_lock_home_summary">Attempt to keep the current home app in memory at all times</string>

    <!-- Performance : Lock mms app in memory -->
    <string name="pref_lock_mms_title">Lock messaging app in memory</string>
    <string name="pref_lock_mms_summary">Avoid lost messages on low memory situations</string>

    <!-- Performance Settings : Warning dialog -->
    <string name="performance_settings_warning_title">WARNING: Dragons Ahead!</string>
    <string name="performance_settings_warning">The options in here will change the performance of your system, potentially for the worse. They are included for experimentation and we request that you do not file bug reports if you have changed any from the defaults.</string>
+5 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <ListPreference android:key="pref_compcache_size" android:dialogTitle="@string/pref_compcache_title"
        android:title="@string/pref_compcache_title" android:summary="@string/pref_compcache_summary"
        android:entries="@array/pref_compcache_size_entries" android:entryValues="@array/pref_compcache_size_values" />

    <CheckBoxPreference android:key="pref_jit_mode"
        android:title="@string/pref_jit_mode_title" android:summary="@string/pref_jit_mode_summary" />