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

Commit dfec7ffc authored by Jayachandran Chinnakkannu's avatar Jayachandran Chinnakkannu Committed by android-build-merger
Browse files

Merge "Expose the following ServiceState API as system APIs" am: f19833ca am: 3b1241b6

am: 8a0d0dff

Change-Id: I12ca8f02bc36aec2a946615187ea7b7ff4dbc5af
parents 028239b5 8a0d0dff
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -8344,6 +8344,8 @@ package android.telephony {
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoList();
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoListForDomain(int);
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoListForTransportType(int);
    method @Nullable public String getOperatorAlphaLongRaw();
    method @Nullable public String getOperatorAlphaShortRaw();
    field public static final int ROAMING_TYPE_DOMESTIC = 2; // 0x2
    field public static final int ROAMING_TYPE_INTERNATIONAL = 3; // 0x3
    field public static final int ROAMING_TYPE_NOT_ROAMING = 0; // 0x0
+6 −0
Original line number Diff line number Diff line
@@ -1950,8 +1950,11 @@ public class ServiceState implements Parcelable {
    /**
     * The current registered raw data network operator name in long alphanumeric format.
     *
     * @return long raw name of operator, null if unregistered or unknown
     * @hide
     */
    @Nullable
    @SystemApi
    public String getOperatorAlphaLongRaw() {
        return mOperatorAlphaLongRaw;
    }
@@ -1966,8 +1969,11 @@ public class ServiceState implements Parcelable {
    /**
     * The current registered raw data network operator name in short alphanumeric format.
     *
     * @return short raw name of operator, null if unregistered or unknown
     * @hide
     */
    @Nullable
    @SystemApi
    public String getOperatorAlphaShortRaw() {
        return mOperatorAlphaShortRaw;
    }