diff options
| author | 2024-09-27 13:51:26 +0000 | |
|---|---|---|
| committer | 2024-09-28 10:27:00 +0000 | |
| commit | 46ad6ae33a97b68d15c45aaff8a87ebf7a0a68e2 (patch) | |
| tree | cd7930f8eb297a5bc8e489ccdb11a6793393f277 | |
| parent | 65e59d9a26dad7c201aab6504ffb70f90c09c0ab (diff) | |
Add interface for satellite CTS
Bug: 370007096
Test: build pass
Flag: EXEMPT add interface
Change-Id: Id05f31512df964c00bf3b6f916377c09d0194b08
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index e57c207a0b3e..2d443cd5cf0b 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -3017,6 +3017,14 @@ interface ITelephony { boolean setSatelliteListeningTimeoutDuration(in long timeoutMillis); /** + * This API can be used by only CTS to control ingoring cellular service state event. + * + * @param enabled Whether to enable boolean config. + * @return {@code true} if the value is set successfully, {@code false} otherwise. + */ + boolean setSatelliteIgnoreCellularServiceState(in boolean enabled); + + /** * This API can be used by only CTS to update satellite pointing UI app package and class names. * * @param packageName The package name of the satellite pointing UI app. |