Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ca3319a authored by Richard Ross's avatar Richard Ross Committed by Gerrit Code Review
Browse files

Merge "Enable SVDO. (1/2)" into cm-10.2

parents 22ff84f9 daa1ae35
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -506,9 +506,12 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker {

    @Override
    public boolean isConcurrentVoiceAndDataAllowed() {
        // For non-LTE, look at the CSS indicator to check on Concurrent V & D capability
        // For LTE set true, else if the SVDO property is set, else use the CSS indicator to
        // check for concurrent voice and data capability
        if (mSS.getRilDataRadioTechnology() == ServiceState.RIL_RADIO_TECHNOLOGY_LTE) {
            return true;
        } else if (SystemProperties.getBoolean(TelephonyProperties.PROPERTY_SVDO, false)) {
            return true;
        } else {
            return mSS.getCssIndicator() == 1;
        }