diff options
author | Hui Wang <huiwang@google.com> | 2021-03-02 19:20:38 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-03-02 19:20:38 +0000 |
commit | 3727cc1834c014d3d9631eb17cbe85865ab13204 (patch) | |
tree | b9a3c36627d8f0d62cf01197bc67e032a7827f06 | |
parent | 41a4f1e44c8d344128ad2993a00b70847136f2ca (diff) | |
parent | a1b42da63d3b3e05d1b70298ea659284369e68f6 (diff) |
Merge "Support telephoy command to set test mode for RCS single registration"
-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); |