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

Commit 50878ce5 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Promotion of android_ui.lnx.2.1-00003.

CRs      Change ID                                   Subject
--------------------------------------------------------------------------------------------------------------
1043367   I33fcc7a2d0a8af19e7d6b83416931ae5ea5f2e92   Hide the accounts which added for data pack
1059802   I7d67b44b0391679e509890bf5aa4b30cad1e5258   Settings: Fix crash on WifiAdvancedSetting
930056   I13b594c4bcd485b1bdab5daab0a644f24a3b7088   Settings: AGPS setting menu requirement for CMCC
957527   Ica49946eaee8ae6f6c00b1faa57ec1da80bad943   Add new network types in settings app.
1039922   I4c2ebecb77d1015fb0a1408c58ac5924c6511a01   "QGP version" information should show in Settings
1039259   If92af84aba0edcd747572138f5315ac712bcaa2f   Fix HotSpot bug:

Change-Id: I2e75ffe8ce98519a567b49ec661ab7d34b1005d1
CRs-Fixed: 1039922, 930056, 1039259, 1043367, 1059802, 957527
parents 453baf4b 3a973d60
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -491,7 +491,6 @@
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.VOICE_LAUNCH" />
                <category android:name="com.android.settings.SHORTCUT" />
            </intent-filter>
            <intent-filter android:priority="1">
                <action android:name="com.android.settings.action.SETTINGS" />
+10 −0
Original line number Diff line number Diff line
@@ -1089,5 +1089,15 @@
        <item>com.qualcomm.qti.RIDL</item>
        <item>com.android.localphone</item>
        <item>com.android.sim</item>
        <item>com.android.alice</item>
        <item>com.android.yahoo</item>
        <item>com.android.outlook</item>
        <item>com.android.gmail</item>
        <item>com.android.aol</item>
        <item>com.android.free</item>
        <item>com.android.laposte</item>
        <item>com.android.sfr</item>
        <item>com.android.orange</item>
        <item>com.android.noos</item>
    </string-array>
</resources>

res/values/bools.xml

100755 → 100644
+5 −0
Original line number Diff line number Diff line
@@ -39,6 +39,9 @@
    <!-- Whether to show a preference item for mobile plan -->
    <bool name="config_show_mobile_plan">true</bool>

    <!-- Whether to add AGPS parameter settings -->
    <bool name="config_agps_enabled">false</bool>

    <!-- Whether none security option is hide or not  (country specific). -->
    <bool name="config_hide_none_security_option">false</bool>

@@ -98,4 +101,6 @@
    <bool name="config_hidesupl_enable">false</bool>
    <!-- Whether to hide mms apn-->
    <bool name="config_hide_mms_enable">false</bool>
    <!-- show pop up notification for turn off wifi begin -->
    <bool name="hotspot_show_turn_off_wifi_dialog">false</bool>
</resources>
+6 −0
Original line number Diff line number Diff line
@@ -2286,6 +2286,8 @@
    <!-- About phone screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="build_number">Build number</string>
    <!-- About phone screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="qgp_version">QGP Version</string>
    <!-- About phone screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="selinux_status">SELinux status</string>
    <!-- About phone screen, show when a value of some status item is unavailable. -->
@@ -7584,4 +7586,8 @@
    <string name="tethering_no_sim_card_text">Please install SIM card in order to share your data connection with other devices using Mobile HotSpot or USB tethering for Internet access.</string>
    <string name="tether_settings_launch_title">Mobile HotSpot</string>
    <string name="wifi_tether_first_use_message">Set up Mobile HotSpot at the First Use</string>
    <string name="lte_data_and_voice_calling_enabled">LTE data and Voice Calling (IMS/VoLTE) service enabled </string>
    <string name="lte_data_service_enabled">LTE data service enabled </string>
    <string name="turn_off_wifi_dialog_title">Turn off Wi-Fi</string>
    <string name="turn_off_wifi_dialog_text">Wi-Fi is turned off when Mobile HotSpot is active. To turn on Wi-Fi, please turn off Mobile HotSpot.</string>
</resources>
+6 −0
Original line number Diff line number Diff line
@@ -120,6 +120,12 @@
                android:title="@string/build_number"
                android:summary="@string/device_info_default"/>

        <!-- Device QGP version -->
        <Preference android:key="qgp_version"
                style="?android:preferenceInformationStyle"
                android:title="@string/qgp_version"
		android:summary="@string/device_info_default"/>

        <!-- SELinux status information -->
        <Preference android:key="selinux_status"
                android:enabled="false"
Loading