Loading src/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java +6 −4 Original line number Diff line number Diff line Loading @@ -562,10 +562,12 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker { @Override public boolean isConcurrentVoiceAndDataAllowed() { // Note: it needs to be confirmed which CDMA network types // can support voice and data calls concurrently. // For the time-being, the return value will be false. return (mRilRadioTechnology == ServiceState.RIL_RADIO_TECHNOLOGY_LTE); // For non-LTE, look at the CSS indicator to check on SV capability if (mRilRadioTechnology == ServiceState.RIL_RADIO_TECHNOLOGY_LTE) { return true; } else { return ss.getCssIndicator() == 1; } } /** Loading Loading
src/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java +6 −4 Original line number Diff line number Diff line Loading @@ -562,10 +562,12 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker { @Override public boolean isConcurrentVoiceAndDataAllowed() { // Note: it needs to be confirmed which CDMA network types // can support voice and data calls concurrently. // For the time-being, the return value will be false. return (mRilRadioTechnology == ServiceState.RIL_RADIO_TECHNOLOGY_LTE); // For non-LTE, look at the CSS indicator to check on SV capability if (mRilRadioTechnology == ServiceState.RIL_RADIO_TECHNOLOGY_LTE) { return true; } else { return ss.getCssIndicator() == 1; } } /** Loading