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

Commit 12dc0c80 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 7964896 from 3b27293b to tm-release

Change-Id: Ibab213168a546c1ed6f4b172536e47e09af7eeb7
parents f7a10648 3b27293b
Loading
Loading
Loading
Loading
+1488 −954

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ parcelable DataProfileInfo {
  int mtuV6;
  boolean preferred;
  boolean persistent;
  boolean alwaysOn;
  const int ID_DEFAULT = 0;
  const int ID_TETHERED = 1;
  const int ID_IMS = 2;
+7 −0
Original line number Diff line number Diff line
@@ -115,4 +115,11 @@ parcelable DataProfileInfo {
     * If the same data profile exists, this data profile must overwrite it.
     */
    boolean persistent;
    /**
     * Indicates the PDU session brought up by this data profile should be always-on.
     * An always-on PDU Session is a PDU Session for which User Plane resources have to be
     * activated during every transition from CM-IDLE mode to CM-CONNECTED state.
     * See 3GPP TS 23.501 section 5.6.13 for the details.
     */
    boolean alwaysOn;
}
+27 −0
Original line number Diff line number Diff line
@@ -38,3 +38,30 @@ aidl_interface {
    },
    versions: ["1"],
}

// cc_defaults that includes the latest KeyMint AIDL library.
// Modules that depend on KeyMint directly can include this cc_defaults to avoid
// managing dependency versions explicitly.
cc_defaults {
    name: "keymint_use_latest_hal_aidl_ndk_static",
    static_libs: [
        "android.hardware.security.keymint-V1-ndk",
    ],
}

cc_defaults {
    name: "keymint_use_latest_hal_aidl_ndk_shared",
    shared_libs: [
        "android.hardware.security.keymint-V1-ndk",
    ],
}

// A rust_defaults that includes the latest KeyMint AIDL library.
// Modules that depend on KeyMint directly can include this cc_defaults to avoid
// managing dependency versions explicitly.
rust_defaults {
    name: "keymint_use_latest_hal_aidl_rust",
    rustlibs: [
        "android.hardware.security.keymint-V1-rust",
    ],
}
+3 −1
Original line number Diff line number Diff line
@@ -21,8 +21,10 @@ cc_binary {
        "-Wall",
        "-Wextra",
    ],
    defaults: [
        "keymint_use_latest_hal_aidl_ndk_shared",
    ],
    shared_libs: [
        "android.hardware.security.keymint-V1-ndk",
        "android.hardware.security.sharedsecret-V1-ndk",
        "android.hardware.security.secureclock-V1-ndk",
        "libbase",
Loading