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

Commit af64bc66 authored by Pawit Pornkitprasan's avatar Pawit Pornkitprasan
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 3c8090ab
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1309,4 +1309,11 @@

    <!-- Device supports LED flashlight -->
    <bool name="config_enableTorch">false</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
@@ -2086,4 +2086,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>