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

Commit 695ca37b authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Partially reapply "Enable OEM_PAID and OEM_PRIVATE APN types"

This partially reverts commit 1de834a6.

Bug: 366194627
Test: m
Test: ABTD v2/telephonycomm/cts_telephony_tests
Change-Id: I62e903572dc088e1452be26ea37cd7ad752ae1eb
parent ddbb1fd3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -396,7 +396,7 @@
    </hal>
    <hal format="aidl">
        <name>android.hardware.radio.data</name>
        <version>3</version>
        <version>3-4</version>
        <interface>
            <name>IRadioData</name>
            <instance>slot1</instance>
@@ -476,7 +476,7 @@
    </hal>
    <hal format="aidl">
        <name>android.hardware.radio.ims.media</name>
        <version>2</version>
        <version>2-3</version>
        <interface>
            <name>IImsMedia</name>
            <instance>default</instance>
+3 −3
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ aidl_interface {
        },

    ],
    frozen: true,
    frozen: false,
}

aidl_interface {
@@ -320,7 +320,7 @@ aidl_interface {
    stability: "vintf",
    imports: [
        "android.hardware.radio-V3",
        "android.hardware.radio.data-V3",
        "android.hardware.radio.data-V4",
    ],
    backend: {
        cpp: {
@@ -347,7 +347,7 @@ aidl_interface {
        },

    ],
    frozen: true,
    frozen: false,
}

aidl_interface {
+2 −0
Original line number Diff line number Diff line
@@ -52,4 +52,6 @@ enum ApnTypes {
  BIP = (1 << 13) /* 8192 */,
  ENTERPRISE = (1 << 14) /* 16384 */,
  RCS = (1 << 15) /* 32768 */,
  OEM_PAID = (1 << 16) /* 65536 */,
  OEM_PRIVATE = (1 << 17) /* 131072 */,
}
+2 −6
Original line number Diff line number Diff line
@@ -91,16 +91,12 @@ enum ApnTypes {
     * APN type for RCS (Rich Communication Services)
     */
    RCS = 1 << 15,

    /**
     * APN type for OEM_PAID networks (Automotive PANS)
     */
    // TODO(b/366194627): enable once HAL unfreezes
    // OEM_PAID = 1 << 16,

    OEM_PAID = 1 << 16,
    /**
     * APN type for OEM_PRIVATE networks (Automotive PANS)
     */
    // TODO(b/366194627): enable once HAL unfreezes
    // OEM_PRIVATE = 1 << 17,
    OEM_PRIVATE = 1 << 17,
}