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

Commit 3fdf4452 authored by Tapas Pradhan's avatar Tapas Pradhan Committed by Gerrit - the friendly Code Review server
Browse files

Addition of new config items causing CTS failures

When new config items are added in between exiting ones
it is causing CTS failures with resource id mismatch.
Fix: Move the newly added config items to the bottom
of config.xml file, in order to maintain resources
ID equivalent with AOSP config.xml file.

Change-Id: I3caf68e6b902f82bf215bdb4387f19a593202278
parent 14149db1
Loading
Loading
Loading
Loading
+28 −27
Original line number Diff line number Diff line
@@ -133,9 +133,6 @@
         off features. -->
    <bool name="config_avoidGfxAccel">false</bool>

    <!-- Whether to enable auto provisioning the app for new SIM card on boot.-->
    <bool name="config_auto_provision_enable">false</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
@@ -599,12 +596,6 @@
    <!-- Enable translucent decor by default -->
    <bool name="config_enableTranslucentDecor">true</bool>

    <!-- Is the device capable of hot swapping an UICC Card -->
    <bool name="config_hotswapCapable">false</bool>

    <!-- Is the device capable of supporting digital pen -->
    <bool name="config_digitalPenCapable">false</bool>

    <!-- Enable puk unlockscreen by default.
         If unlock screen is disabled, the puk should be unlocked through Emergency Dialer -->
    <bool name="config_enable_puk_unlock_screen">true</bool>
@@ -750,9 +741,6 @@
         be picked. Anyone who wants to disable the overlay mechanism can set it
         to false.
         -->
    <bool name="config_enableHwFlpOverlay" translatable="false">true</bool>
    <!-- Package name providing fused location support. Used only when
         config_enableFusedLocationOverlay or config_enableHwFlpOverlay is false. -->
    <string name="config_fusedLocationProviderPackageName" translatable="false">com.android.location.fused</string>

    <!-- Whether to enable geocoder overlay which allows geocoder to be replaced
@@ -799,12 +787,6 @@
        <item>com.android.location.fused</item>
    </string-array>

    <!-- Component name of the geofence services provider. -->
    <string name="config_geofenceServicesProvider" translatable="false">com.qualcomm.location</string>

    <!-- Component name of the combo network location provider. -->
    <string name="config_comboNetworkLocationProvider" translatable="false">com.qualcomm.location</string>

    <!-- Boolean indicating if current platform supports bluetooth SCO for off call
    use cases -->
    <bool name="config_bluetooth_sco_off_call">true</bool>
@@ -1131,10 +1113,6 @@
    <!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. -->
    <bool name="config_cellBroadcastAppLinks">false</bool>

    <!-- Boolean indicating if RADIO POWER OFF should be skipped on receiving SIM REFRESH with RESET-->
    <!-- This will be handled by modem if it is true-->
    <bool translatable="false" name="skip_radio_power_off_on_sim_refresh_reset">true</bool>

    <!-- The default value if the SyncStorageEngine should sync automatically or not -->
    <bool name="config_syncstorageengine_masterSyncAutomatically">true</bool>

@@ -1166,11 +1144,6 @@
         may have a specific value set in an overlay config.xml file. -->
    <integer name="config_mobile_mtu">1500</integer>


    <!-- Configuration to send sms on 1x when UE is attached to eHRPD and there is an active
         1xRTT voice call, irrespective of IMS registration state  -->
    <bool name="config_send_sms1x_on_voice_call">true</bool>

    <!-- Whether WiFi display is supported by this device.
         There are many prerequisites for this feature to work correctly.
         Here are a few of them:
@@ -1446,4 +1419,32 @@
    <bool name="config_sim_refresh_for_dual_mode_card">true</bool>
    <!-- set this value to true to set network mode as global during boot up -->
    <bool name="config_global_phone_enabled">false</bool>

    <!-- Whether to enable auto provisioning the app for new SIM card on boot.-->
    <bool name="config_auto_provision_enable">false</bool>

    <!-- Is the device capable of hot swapping an UICC Card -->
    <bool name="config_hotswapCapable">false</bool>

    <!-- Is the device capable of supporting digital pen -->
    <bool name="config_digitalPenCapable">false</bool>

    <bool name="config_enableHwFlpOverlay" translatable="false">true</bool>
    <!-- Package name providing fused location support. Used only when
        config_enableFusedLocationOverlay or config_enableHwFlpOverlay is false. -->

    <!-- Component name of the geofence services provider. -->
    <string name="config_geofenceServicesProvider" translatable="false">com.qualcomm.location</string>

    <!-- Component name of the combo network location provider. -->
    <string name="config_comboNetworkLocationProvider" translatable="false">com.qualcomm.location</string>

    <!-- Boolean indicating if RADIO POWER OFF should be skipped on receiving SIM REFRESH with RESET-->
    <!-- This will be handled by modem if it is true-->
    <bool translatable="false" name="skip_radio_power_off_on_sim_refresh_reset">true</bool>

    <!-- Configuration to send sms on 1x when UE is attached to eHRPD and there is an active
            1xRTT voice call, irrespective of IMS registration state  -->
    <bool name="config_send_sms1x_on_voice_call">true</bool>

</resources>