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

Commit 34cef659 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "Merge "Move getPhoneCount implementation back to TelephonyManager." am:...

Merge "Merge "Move getPhoneCount implementation back to TelephonyManager." am: 7d6e0852 am: 2938bf23" into pi-dev-plus-aosp
parents fa3d6a04 4d67623d
Loading
Loading
Loading
Loading
+19 −20
Original line number Diff line number Diff line
@@ -363,27 +363,26 @@ public class TelephonyManager {
     * Returns 3 for Tri standby mode.(Tri SIM functionality)
     */
    public int getPhoneCount() {
        int phoneCount = 0;

        int phoneCount = 1;
        switch (getMultiSimConfiguration()) {
            case UNKNOWN:
                ConnectivityManager cm = mContext == null ? null : (ConnectivityManager) mContext
                        .getSystemService(Context.CONNECTIVITY_SERVICE);
                // check for voice and data support, 0 if not supported
        if (!isVoiceCapable() && !isSmsCapable()) {
            ConnectivityManager cm = (ConnectivityManager) mContext.getSystemService(
                    Context.CONNECTIVITY_SERVICE);
            if (cm != null) {
                if (!cm.isNetworkSupported(ConnectivityManager.TYPE_MOBILE)) {
                    return phoneCount;
                }
            }
        }

                if (!isVoiceCapable() && !isSmsCapable() && cm != null
                        && !cm.isNetworkSupported(ConnectivityManager.TYPE_MOBILE)) {
                    phoneCount = 0;
                } else {
                    phoneCount = 1;
        try {
            ITelephony telephony = getITelephony();
            if (telephony != null) {
                phoneCount = telephony.getNumOfActiveSims();
                }
        } catch (RemoteException ex) {
            Rlog.e(TAG, "getNumOfActiveSims RemoteException", ex);
                break;
            case DSDS:
            case DSDA:
                phoneCount = PhoneConstants.MAX_PHONE_COUNT_DUAL_SIM;
                break;
            case TSTS:
                phoneCount = PhoneConstants.MAX_PHONE_COUNT_TRI_SIM;
                break;
        }
        return phoneCount;
    }
+0 −5
Original line number Diff line number Diff line
@@ -1844,11 +1844,6 @@ interface ITelephony {
     * @hide
     */
    void switchMultiSimConfig(int numOfSims);
    /**
     * Get how many modems have been activated on the phone
     * @hide
     */
    int getNumOfActiveSims();

    /**
     * Get if reboot is required upon altering modems configurations