diff options
author | Suresh Koleti <skoleti@codeaurora.org> | 2021-06-21 20:04:38 +0530 |
---|---|---|
committer | Suresh Koleti <skoleti@codeaurora.org> | 2021-07-13 16:39:46 +0530 |
commit | 9e7bdf1c62cc5fdc80ce59867e0892b7ef8a54fc (patch) | |
tree | 1dd71b5efdbfcc5de025b3bc42676f06505d9339 /telephony/java/com/android/internal | |
parent | 39c15671f470704c3598ff2fe1455a6f46523fd5 (diff) |
IMS: Define new property for multi sim voice capability
- Define new property ril.multisim.voice_capability.
- Introduce helper API "isConcurrentCallsPossible" to know
concurrent calls possible or not.
Change-Id: I8057825f2f8b15cb583a566997c0e6cc6e9ff865
CRs-Fixed: 2989022
Diffstat (limited to 'telephony/java/com/android/internal')
-rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyProperties.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/TelephonyProperties.java b/telephony/java/com/android/internal/telephony/TelephonyProperties.java index 29286e8f429e..4a8d414ae446 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyProperties.java +++ b/telephony/java/com/android/internal/telephony/TelephonyProperties.java @@ -241,4 +241,10 @@ public interface TelephonyProperties * Type: int */ static final String PROPERTY_MAX_ACTIVE_MODEMS = "telephony.active_modems.max_count"; + + /** + * Property to store multi sim voice capability configuration. + * Type: int posssible values are @link TelephonyManager#MultiSimVoiceCapability. + */ + static final String PROPERTY_MULTISIM_VOICE_CAPABILITY = "ril.multisim.voice_capability"; } |