commit | 5bb658478dd596628d1c9076f9415db1ff9cb94b | [log] [tgz] |
---|---|---|
author | Tomasz Wasilczyk <twasilczyk@google.com> | Thu Sep 12 10:36:00 2024 -0700 |
committer | Tomasz Wasilczyk <twasilczyk@google.com> | Fri Oct 18 11:49:42 2024 -0700 |
tree | fc5dc0682dec5608f7ca12c41b7116d5725bfbb7 | |
parent | 50297cce15f7fef92e9ee021e89d753269dfba3e [diff] |
Stage OEM_PAID and OEM_PRIVATE ApnTypes Bug: 366194627 Test: m Change-Id: I8d7b4b5c10c4caec923592597ae1709b6e277a7a Merged-In: I8d7b4b5c10c4caec923592597ae1709b6e277a7a
diff --git a/radio/aidl/android/hardware/radio/data/ApnTypes.aidl b/radio/aidl/android/hardware/radio/data/ApnTypes.aidl index f44c636..2a0c263 100644 --- a/radio/aidl/android/hardware/radio/data/ApnTypes.aidl +++ b/radio/aidl/android/hardware/radio/data/ApnTypes.aidl
@@ -90,5 +90,17 @@ /** * APN type for RCS (Rich Communication Services) */ - RCS = 1 << 15 + RCS = 1 << 15, + + /** + * APN type for OEM_PAID networks (Automotive PANS) + */ + // TODO(b/366194627): enable once HAL unfreezes + // OEM_PAID = 1 << 16, + + /** + * APN type for OEM_PRIVATE networks (Automotive PANS) + */ + // TODO(b/366194627): enable once HAL unfreezes + // OEM_PRIVATE = 1 << 17, }