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

Commit 6a685a7c authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Clean up OEM_PAID/PRIVATE APN type definitions

Bug: 366194627
Change-Id: Ic03e3f81aa982341e375064f92d3475c1c856c16
Test: TH
Flag: com.android.internal.telephony.flags.oem_paid_private
parent 16b64408
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -130,10 +130,10 @@ public class ApnSetting implements Parcelable {
    public static final int TYPE_RCS = ApnTypes.RCS;
    /** APN type for OEM_PAID networks (Automotive PANS) */
    @FlaggedApi(Flags.FLAG_OEM_PAID_PRIVATE)
    public static final int TYPE_OEM_PAID = 1 << 16; // TODO(b/366194627): ApnTypes.OEM_PAID;
    public static final int TYPE_OEM_PAID = ApnTypes.OEM_PAID;
    /** APN type for OEM_PRIVATE networks (Automotive PANS) */
    @FlaggedApi(Flags.FLAG_OEM_PAID_PRIVATE)
    public static final int TYPE_OEM_PRIVATE = 1 << 17; // TODO(b/366194627): ApnTypes.OEM_PRIVATE;
    public static final int TYPE_OEM_PRIVATE = ApnTypes.OEM_PRIVATE;

    /** @hide */
    @IntDef(flag = true, prefix = {"TYPE_"}, value = {