summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawit Pornkitprasan <p.pawit@gmail.com>2013-10-24 16:16:30 +0700
committerSteve Kondik <shade@chemlab.org>2013-11-12 01:20:18 -0800
commite6d48a69a36b5c5c7fa9ef9c0174407fdd247afb (patch)
treef93fb6fadebba31f8e3ccfcd031ef125da590d5f
parentcab51a2cf325a7a890397941119d4783d84c97f9 (diff)
downloadandroid_frameworks_base-caf-rb.tar.gz
android_frameworks_base-caf-rb.tar.bz2
android_frameworks_base-caf-rb.zip
telephony: disable the use of SMS_EXPECT_MORE by default (1/2)caf-rb
CodeAurora added the use of the RIL_REQUEST_SEND_SMS_EXPECT_MORE API which is not supported by every RIL. Disabled it by default to reflect AOSP behavior and added a flag to enable it. Change-Id: I837c161bbca3960e7458ea049f896218d5e60a63
-rw-r--r--core/res/res/values/config.xml7
-rw-r--r--core/res/res/values/symbols.xml3
2 files changed, 10 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index b91052f4ae8..e67f95f2636 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -1423,4 +1423,11 @@
<!-- set to false if we dont need to consider data
service state to display signal strength bars -->
<bool name="config_combined_signal">true</bool>
+
+ <!-- Flag indicating whether the RIL_REQUEST_SEND_SMS_EXPECT_MORE
+ API should be used or not. The usage of the API is added
+ by CodeAurora and may not be supported by certain RIL.
+
+ The default value is false which represents AOSP behavior. -->
+ <bool name="config_smsUseExpectMore">false</bool>
</resources>
diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml
index ba55f5a3424..4cf55bafa7d 100644
--- a/core/res/res/values/symbols.xml
+++ b/core/res/res/values/symbols.xml
@@ -1864,4 +1864,7 @@
<!-- LED flashlight -->
<java-symbol type="bool" name="config_enableTorch" />
+
+ <!-- SMS RIL_REQUEST_SEND_SMS_EXPECT_MORE -->
+ <java-symbol type="bool" name="config_smsUseExpectMore" />
</resources>