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

Commit 3689c969 authored by calvinpan's avatar calvinpan Committed by Calvin Pan
Browse files

Add CarrierId column in TelephonyProvider

Add a column in provider to migrate mno and mvno to carrierid.

Bug: 115709816
Test: runtest --path tests/src/com/android/providers/telephony/TelephonyProviderTest.java
Change-Id: I9c0c0fd069acc7f182d94f422ff15f45ebf187a9
Merged-In: I9c0c0fd069acc7f182d94f422ff15f45ebf187a9
parent 9d4ebdf3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -37259,6 +37259,7 @@ package android.provider {
    field public static final java.lang.String AUTH_TYPE = "authtype";
    field public static final deprecated java.lang.String BEARER = "bearer";
    field public static final java.lang.String CARRIER_ENABLED = "carrier_enabled";
    field public static final java.lang.String CARRIER_ID = "carrier_id";
    field public static final android.net.Uri CONTENT_URI;
    field public static final java.lang.String CURRENT = "current";
    field public static final java.lang.String DEFAULT_SORT_ORDER = "name ASC";
+7 −0
Original line number Diff line number Diff line
@@ -2995,6 +2995,13 @@ public final class Telephony {
        @SystemApi
        public static final int NO_SET_SET = 0;

        /**
         * A unique carrier id associated with this APN
         * {@see TelephonyManager#getSimCarrierId()}
         * <p>Type: STRING</p>
         */
        public static final String CARRIER_ID = "carrier_id";

    }

    /**