diff options
| -rw-r--r-- | telephony/java/android/telephony/CarrierConfigManager.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index 3283c69b974b..b85426b3b4b0 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -5842,8 +5842,9 @@ public class CarrierConfigManager { * <item value="source=GERAN|UTRAN, target:IWLAN, type=disallowed"/> * <!-- Handover from IWLAN to 3G/4G/5G is not allowed if the device is roaming. --> * <item value="source=IWLAN, target=UTRAN|EUTRAN|NGRAN, roaming=true, type=disallowed"/> - * <!-- Handover from 4G to IWLAN is not allowed --> - * <item value="source=EUTRAN, target=IWLAN, type=disallowed"/> + * <!-- Handover from 4G to IWLAN is not allowed if the device has capability in either IMS + * or EIMS--> + * <item value="source=EUTRAN, target=IWLAN, type=disallowed, capabilities=IMS|EIMS"/> * <!-- Handover is always allowed in any condition. --> * <item value="source=GERAN|UTRAN|EUTRAN|NGRAN|IWLAN, * target=GERAN|UTRAN|EUTRAN|NGRAN|IWLAN, type=allowed"/> |