diff options
| author | 2022-04-11 13:41:30 -0700 | |
|---|---|---|
| committer | 2022-05-05 21:11:51 -0700 | |
| commit | 64b6709e80a57788f3c8cb8a01647fd62853f11c (patch) | |
| tree | 1ae85a355fac67e59c64917b0da6c2a3a0b16901 | |
| parent | d884be6c100ed7dfadc058507a1d6bb82255326f (diff) | |
Inverted the new data stack flag
Invert the flag so even if this flag does not exist in the
resource, the new data stack is still enabled by default.
Fix: 228813515
Test: Manual && atest FrameworksTelephonyTests
Merged-In: I75737c0ef9bce91385f815133e1878e5abea68ff
Change-Id: I75737c0ef9bce91385f815133e1878e5abea68ff
| -rw-r--r-- | core/res/res/values/config_telephony.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/res/res/values/config_telephony.xml b/core/res/res/values/config_telephony.xml index cd3578c727f0..77500c42c6bf 100644 --- a/core/res/res/values/config_telephony.xml +++ b/core/res/res/values/config_telephony.xml @@ -17,9 +17,9 @@ <resources> <!-- This file defines Android telephony related resources --> - <!-- Whether force to enable telephony new data stack or not --> - <bool name="config_force_enable_telephony_new_data_stack">true</bool> - <java-symbol type="bool" name="config_force_enable_telephony_new_data_stack" /> + <!-- Whether force disabling telephony new data stack or not --> + <bool name="config_force_disable_telephony_new_data_stack">false</bool> + <java-symbol type="bool" name="config_force_disable_telephony_new_data_stack" /> <!-- Configure tcp buffer sizes per network type in the form: network-type:rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max |