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

Commit e6d48a69 authored by Pawit Pornkitprasan's avatar Pawit Pornkitprasan Committed by Steve Kondik
Browse files

telephony: disable the use of SMS_EXPECT_MORE by default (1/2)

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
parent cab51a2c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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>
+3 −0
Original line number Diff line number Diff line
@@ -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>