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

Commit b29059c5 authored by kaiyiz's avatar kaiyiz Committed by Xiaojing Zhang
Browse files

Setting: customize build version flashlight quickboot.

- Customize build version.
- Customize hiden led flashlight.
- Customize display quick boot.

Change-Id: I00b4cbd58f3f3d01d7003ab7c5578c94a25d50c7
parent 6e1f165b
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -80,6 +80,10 @@
            android:supportsRtl="true"
            android:allowBackup="false">

      <uses-library
            android:name="com.qualcomm.qcrilhook"
            android:required="true" />

      <!-- screen color Settings Controls -->
        <activity android:name=".ScreenColorSettings" android:label="@string/screencolor"
            android:configChanges="orientation|keyboardHidden|screenSize"
@@ -1099,6 +1103,12 @@
                android:value="true" />
        </activity>

        <receiver android:name=".accessibility.LedFlashlightReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.ACTION_SHUTDOWN" />
            </intent-filter>
        </receiver>

        <activity android:name="Settings$CaptioningSettingsActivity"
                android:label="@string/accessibility_captioning_title"
                android:taskAffinity="com.android.settings"
+1 −1
Original line number Diff line number Diff line
@@ -229,9 +229,9 @@
    <item msgid="2681427309183221543">"GID"</item>
  </string-array>
  <string-array name="app_install_location_entries">
    <item msgid="4498124044785815005">"由系统确定"</item>
    <item msgid="8151497958991952759">"内部存储设备"</item>
    <item msgid="3738430123799803530">"可卸载的SD卡"</item>
    <item msgid="4498124044785815005">"由系统确定"</item>
  </string-array>
  <!-- App ops permissions -->
  <string-array name="app_ops_permissions">
+1 −0
Original line number Diff line number Diff line
@@ -2402,6 +2402,7 @@
    <string name="usb_charging_summary">连接电脑时,对手机进行充电</string>
    <string name="external_storage_turn_on">"外部存储器已打开"</string>
    <string name="external_storage_turn_off">"外部存储器已关闭"</string>
    <string name="accessibility_toggle_led_flashlight_preference_title">LED 手电筒</string>

    <string name="write_tag" msgid="8571858602896222537">"写入"</string>
    <string name="status_awaiting_tap" msgid="2130145523773160617">"点按标签即可写入…"</string>
+1 −1
Original line number Diff line number Diff line
@@ -608,9 +608,9 @@

    <!-- Apps on SD installation location options in ApplicationSettings -->
    <string-array name="app_install_location_entries">
        <item>Let the system decide</item>
        <item>Internal device storage</item>
        <item>Removable SD card</item>
        <item>Let the system decide</item>
    </string-array>

    <!-- Do not translate. -->
+21 −0
Original line number Diff line number Diff line
@@ -59,4 +59,25 @@

    <!-- Setting customize default carriers name -->
    <string name="def_custome_carriers_defname"></string>

    <!-- Setting customize build version -->
    <string name="def_build_version_defname"></string>

    <!-- Whether to hide LED flashlight -->
    <bool name="def_led_flashlight_enable">false</bool>

    <!-- Whether to show_kernel version name -->
    <bool name="def_hide_kernel_version_name">false</bool>

    <!-- Whether to vibrate when ringing -->
    <bool name="def_vibrate_when_ringing">false</bool>

    <!-- Whether to display enable quick boot -->
    <bool name="def_quick_boot_enable">false</bool>

    <!-- Whether to display enable battery percent -->
    <bool name="def_show_battery_percent">false</bool>

    <!-- whether to show sound profile and hide sound settings -->
    <bool name="show_profile_and_hide_sound_settings">false</bool>
</resources>
Loading