diff options
author | James.cf Lin <jamescflin@google.com> | 2021-01-31 05:29:35 +0800 |
---|---|---|
committer | James.cf Lin <jamescflin@google.com> | 2021-02-02 06:30:49 +0800 |
commit | 1d44f9e09e80e30580e8b8a1a21f0a10ac7a1c03 (patch) | |
tree | 2e6620442cad466f3fe71f925de7e04ab1ff33fe /telephony/java/com | |
parent | 499850f9767f0d429016624e7a8d513f14e3cfa8 (diff) |
[RCS UCE] Add the APIs to access the device config of RCS User Capability Exchange enabled
Bug: 178239287
Test: atest -c CtsTelephonyTestCases:android.telephony.ims.cts.RcsUceAdapterTest
Change-Id: I1bd2d0e0dc88dcd72e7c2682483c8039f4aa8927
Diffstat (limited to 'telephony/java/com')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 8514625fa5b9..77d46f4c39cd 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2392,6 +2392,16 @@ interface ITelephony { */ String getContactFromEab(String contact); + /* + * Check whether the device supports RCS User Capability Exchange or not. + */ + boolean getDeviceUceEnabled(); + + /* + * Set the device supports RCS User Capability Exchange. + */ + void setDeviceUceEnabled(boolean isEnabled); + /** * Set a SignalStrengthUpdateRequest to receive notification when Signal Strength breach the * specified thresholds. |