diff options
author | 2025-03-20 03:55:48 -0700 | |
---|---|---|
committer | 2025-03-20 03:55:48 -0700 | |
commit | 9464d4ab2b61755da8729b924077a7abddf6cc7a (patch) | |
tree | 1bcb953cf972e9305d6cc7f95ddad392c706d53c /telephony | |
parent | c6f1535bf2224dd6d3a839a3280a4a9cd097ce6f (diff) | |
parent | f5dc342079e38d302096fd4812c72011991032c4 (diff) |
Merge "Add TelephonyConfigManager flag for controlling whether satellite can be disabled while enabling in progress" into main
Diffstat (limited to 'telephony')
-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 d7f80a94081a..2095ee83b77d 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -3135,6 +3135,16 @@ interface ITelephony { boolean setSatelliteIgnoreCellularServiceState(in boolean enabled); /** + * This API can be used by only CTS to control the feature + * {@code config_support_disable_satellite_while_enable_in_progress}. + * + * @param reset Whether to reset the override. + * @param supported Whether to support the feature. + * @return {@code true} if the value is set successfully, {@code false} otherwise. + */ + boolean setSupportDisableSatelliteWhileEnableInProgress(boolean reset, boolean supported); + + /** * 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. |