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

Commit 04291af4 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Remove PHONE_TYPE_IMS and PHONE_TYPE_THIRD_PARTY as apis" into rvc-dev...

Merge "Remove PHONE_TYPE_IMS and PHONE_TYPE_THIRD_PARTY as apis" into rvc-dev am: 50b916bd am: f0ef506f am: 786e4631 am: 7db4f1e4

Change-Id: I0be90cdc9917fb6784648c31163c2aaca2d14025
parents a0e8b1ec 7db4f1e4
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -48338,7 +48338,6 @@ package android.telephony {
    field public static final int NETWORK_TYPE_UNKNOWN = 0; // 0x0
    field public static final int PHONE_TYPE_CDMA = 2; // 0x2
    field public static final int PHONE_TYPE_GSM = 1; // 0x1
    field public static final int PHONE_TYPE_IMS = 5; // 0x5
    field public static final int PHONE_TYPE_NONE = 0; // 0x0
    field public static final int PHONE_TYPE_SIP = 3; // 0x3
    field public static final int SET_OPPORTUNISTIC_SUB_INACTIVE_SUBSCRIPTION = 2; // 0x2
+0 −1
Original line number Diff line number Diff line
@@ -11784,7 +11784,6 @@ package android.telephony {
    field public static final long NETWORK_TYPE_BITMASK_TD_SCDMA = 65536L; // 0x10000L
    field public static final long NETWORK_TYPE_BITMASK_UMTS = 4L; // 0x4L
    field public static final long NETWORK_TYPE_BITMASK_UNKNOWN = 0L; // 0x0L
    field public static final int PHONE_TYPE_THIRD_PARTY = 4; // 0x4
    field public static final int RADIO_POWER_OFF = 0; // 0x0
    field public static final int RADIO_POWER_ON = 1; // 0x1
    field public static final int RADIO_POWER_UNAVAILABLE = 2; // 0x2
+6 −2
Original line number Diff line number Diff line
@@ -2372,7 +2372,12 @@ public class TelephonyManager {
    public static final int PHONE_TYPE_CDMA = PhoneConstants.PHONE_TYPE_CDMA;
    /** Phone is via SIP. */
    public static final int PHONE_TYPE_SIP = PhoneConstants.PHONE_TYPE_SIP;
    /** Phone is via IMS. */

    /**
     * Phone is via IMS.
     *
     * @hide
     */
    public static final int PHONE_TYPE_IMS = PhoneConstants.PHONE_TYPE_IMS;

    /**
@@ -2380,7 +2385,6 @@ public class TelephonyManager {
     *
     * @hide
     */
    @SystemApi
    public static final int PHONE_TYPE_THIRD_PARTY = PhoneConstants.PHONE_TYPE_THIRD_PARTY;

    /**