diff options
| -rw-r--r-- | core/res/res/values/config.xml | 10 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index a153273f0195..e9c5152cce0f 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -1823,4 +1823,14 @@ <!-- Flag indicating whether radio is to be restarted on the error of PDP_FAIL_REGULAR_DEACTIVATION/0x24 --> <bool name="config_restart_radio_on_pdp_fail_regular_deactivation">false</bool> + + <!-- networks that don't want data deactivate when shutdown the phone + note this is dependent on the operator of the network we're on, + not operator on the SIM --> + <string-array translatable="false" name="networks_not_clear_data"> + <item>71203</item> + <item>71606</item> + <item>71610</item> + <item>732101</item> + </string-array> </resources> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 3a3847ed1871..c580d268463d 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -2067,4 +2067,5 @@ <java-symbol type="id" name="textSpacerNoButtons" /> <java-symbol type="array" name="dial_string_replace" /> <java-symbol type="bool" name="config_restart_radio_on_pdp_fail_regular_deactivation" /> + <java-symbol type="array" name="networks_not_clear_data" /> </resources> |