diff options
| author | 2021-02-23 15:14:55 -0800 | |
|---|---|---|
| committer | 2021-02-25 21:47:25 -0800 | |
| commit | f4e393fbdcd5d17c36a3fb0acaf4d5a2175455c9 (patch) | |
| tree | b723fb62857469f51d47fd376614300547a619af | |
| parent | e4244b9d73a684df8346c237a9b2b09979fd9dc6 (diff) | |
Support telephoy command to set test mode for RCS single registration
Bug: 181054754
Test: Manual
Change-Id: Id34c212e536b47c61bc1939ef056905fc26b4df2
| -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 1d049530ba77..d3a584ae5746 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2320,6 +2320,16 @@ interface ITelephony { void triggerRcsReconfiguration(int subId); /** + * Enables or disables the test mode for RCS VoLTE single registration. + */ + void setRcsSingleRegistrationTestModeEnabled(boolean enabled); + + /** + * Gets the test mode for RCS VoLTE single registration. + */ + boolean getRcsSingleRegistrationTestModeEnabled(); + + /** * Overrides the config of RCS VoLTE single registration enabled for the device. */ void setDeviceSingleRegistrationEnabledOverride(String enabled); |