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

Commit 7c2815e5 authored by Daniel Bright's avatar Daniel Bright Committed by Automerger Merge Worker
Browse files

Merge "Make TelephonyManager#setImsRegistrationState multi-sim aware" am: 2c8f0de9

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1550421

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ie63cb44e6ca63d40155b306312b96c566054f148
parents 5c0c8997 2c8f0de9
Loading
Loading
Loading
Loading
+10 −5
Original line number Original line Diff line number Diff line
@@ -7456,18 +7456,23 @@ public class TelephonyManager {
    }
    }
    /**
    /**
     * Set IMS registration state
     * Set IMS registration state on all active subscriptions.
     * <p/>
     * Use {@link android.telephony.ims.stub.ImsRegistrationImplBase#onRegistered} and
     * {@link android.telephony.ims.stub.ImsRegistrationImplBase#onDeregistered} to set Ims
     * registration state instead.
     *
     * @param registered whether ims is registered
     *
     *
     * @param Registration state
     * @hide
     * @hide
     */
     */
    @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
    @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
    public void setImsRegistrationState(boolean registered) {
    public void setImsRegistrationState(final boolean registered) {
        try {
        try {
            ITelephony telephony = getITelephony();
            final ITelephony telephony = getITelephony();
            if (telephony != null)
            if (telephony != null)
                telephony.setImsRegistrationState(registered);
                telephony.setImsRegistrationState(registered);
        } catch (RemoteException e) {
        } catch (final RemoteException e) {
        }
        }
    }
    }
+17 −0
Original line number Original line Diff line number Diff line
@@ -25,6 +25,7 @@ import android.annotation.RequiresPermission;
import android.net.Uri;
import android.net.Uri;
import android.os.Binder;
import android.os.Binder;
import android.telephony.AccessNetworkConstants;
import android.telephony.AccessNetworkConstants;
import android.telephony.NetworkRegistrationInfo;
import android.telephony.ims.aidl.IImsRegistrationCallback;
import android.telephony.ims.aidl.IImsRegistrationCallback;
import android.telephony.ims.feature.ImsFeature;
import android.telephony.ims.feature.ImsFeature;
import android.telephony.ims.stub.ImsRegistrationImplBase;
import android.telephony.ims.stub.ImsRegistrationImplBase;
@@ -85,6 +86,22 @@ public interface RegistrationManager {
                        AccessNetworkConstants.TRANSPORT_TYPE_WLAN);
                        AccessNetworkConstants.TRANSPORT_TYPE_WLAN);
            }};
            }};


    /** @hide */
    @NonNull
    static String registrationStateToString(
            final @NetworkRegistrationInfo.RegistrationState int value) {
        switch (value) {
            case REGISTRATION_STATE_NOT_REGISTERED:
                return "REGISTRATION_STATE_NOT_REGISTERED";
            case REGISTRATION_STATE_REGISTERING:
                return "REGISTRATION_STATE_REGISTERING";
            case REGISTRATION_STATE_REGISTERED:
                return "REGISTRATION_STATE_REGISTERED";
            default:
                return Integer.toString(value);
        }
    }

    /**
    /**
     * Callback class for receiving IMS network Registration callback events.
     * Callback class for receiving IMS network Registration callback events.
     * @see #registerImsRegistrationCallback(Executor, RegistrationCallback)
     * @see #registerImsRegistrationCallback(Executor, RegistrationCallback)