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

Commit 60770439 authored by yuemingw's avatar yuemingw Committed by android-build-merger
Browse files

Merge "Add OWNED_BY field." am: 107141be am: 9c7be233

am: 592d6202

Change-Id: Ib023411485c971815f05e0b1e5894adbc725a6d8
parents 4a3d8447 592d6202
Loading
Loading
Loading
Loading
+20 −0
Original line number Original line Diff line number Diff line
@@ -2828,6 +2828,26 @@ public final class Telephony {
         *  @hide
         *  @hide
         */
         */
        public static final int CARRIER_DELETED_BUT_PRESENT_IN_XML = 6;
        public static final int CARRIER_DELETED_BUT_PRESENT_IN_XML = 6;

        /**
         * The owner of the APN.
         * <p>Type: INTEGER</p>
         * @hide
         */
        public static final String OWNED_BY = "owned_by";

        /**
         * Possible value for the OWNED_BY field.
         * APN is owned by DPC.
         * @hide
         */
        public static final int OWNED_BY_DPC = 0;
        /**
         * Possible value for the OWNED_BY field.
         * APN is owned by other sources.
         * @hide
         */
        public static final int OWNED_BY_OTHERS = 1;
    }
    }


    /**
    /**