diff options
author | Hui Wang <huiwang@google.com> | 2021-02-23 15:14:55 -0800 |
---|---|---|
committer | Hui Wang <huiwang@google.com> | 2021-03-01 21:37:01 +0000 |
commit | a1b42da63d3b3e05d1b70298ea659284369e68f6 (patch) | |
tree | dce67ee59264b39be3d1b0da7752fc8cad1b6d4e /telephony/java/com | |
parent | f9e2a9c55ac956872fa3bc0a455b82ff87d3791e (diff) |
Support telephoy command to set test mode for RCS single registration
Bug: 181054754
Test: Manual
Merged-In: Id34c212e536b47c61bc1939ef056905fc26b4df2
Change-Id: Id34c212e536b47c61bc1939ef056905fc26b4df2
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 e270b8dc3fe4..9fe06dc32c28 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2352,6 +2352,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); |