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

Commit 86c4ed7c authored by Jayachandran C's avatar Jayachandran C
Browse files

Make getOperatorAlphaLongRaw/getOperatorAlphaShortRaw as public APIs

This is as per API council feedback

Bug: 147676513
Test: Verified system UI with AT&T SIM
      atest SystemUITests
      atest frameworks/opt/telephony/tests/telephonytests/

Change-Id: Ie000a736831c8cd806a7e53d9fd56e3e3b707a88
parent fb7bda97
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -47753,7 +47753,9 @@ package android.telephony {
    method public boolean getIsManualSelection();
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoList();
    method public String getOperatorAlphaLong();
    method @Nullable public String getOperatorAlphaLongRaw();
    method public String getOperatorAlphaShort();
    method @Nullable public String getOperatorAlphaShortRaw();
    method public String getOperatorNumeric();
    method public boolean getRoaming();
    method public int getState();
+0 −2
Original line number Diff line number Diff line
@@ -11460,8 +11460,6 @@ package android.telephony {
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoListForDomain(int);
    method @NonNull public java.util.List<android.telephony.NetworkRegistrationInfo> getNetworkRegistrationInfoListForTransportType(int);
    method public int getNrFrequencyRange();
    method @Nullable public String getOperatorAlphaLongRaw();
    method @Nullable public String getOperatorAlphaShortRaw();
    method @NonNull public static android.telephony.ServiceState newFromBundle(@NonNull android.os.Bundle);
    field public static final int ROAMING_TYPE_DOMESTIC = 2; // 0x2
    field public static final int ROAMING_TYPE_INTERNATIONAL = 3; // 0x3
+4 −4
Original line number Diff line number Diff line
@@ -2023,11 +2023,11 @@ public class ServiceState implements Parcelable {
    /**
     * The current registered raw data network operator name in long alphanumeric format.
     *
     * The long format can be up to 16 characters long.
     *
     * @return long raw name of operator, null if unregistered or unknown
     * @hide
     */
    @Nullable
    @SystemApi
    public String getOperatorAlphaLongRaw() {
        return mOperatorAlphaLongRaw;
    }
@@ -2042,11 +2042,11 @@ public class ServiceState implements Parcelable {
    /**
     * The current registered raw data network operator name in short alphanumeric format.
     *
     * The short format can be up to 8 characters long.
     *
     * @return short raw name of operator, null if unregistered or unknown
     * @hide
     */
    @Nullable
    @SystemApi
    public String getOperatorAlphaShortRaw() {
        return mOperatorAlphaShortRaw;
    }