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

Commit f24fefa0 authored by William Escande's avatar William Escande
Browse files

Clear apex.go entries for bluetooth libs

The module availability to Bluetooth is currently hard-coded in apex.go.
We are in the process of cleaning the apex.go by adding the availability
in each required module

Test: Build + TH + boot phone & use bluetooth
Bug: 216433795
Ignore-AOSP-First: No apex in aosp
Change-Id: I98a8ce2054f6b9fe49b583abf681bc4cb53d2951
parent 2570b7dd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -45,6 +45,9 @@ cc_library_static {
        "src/audio_a2dp_hw_utils.cc",
    ],
    host_supported: true,
    apex_available: [
        "com.android.bluetooth",
    ],
    min_sdk_version: "29",
}

+3 −0
Original line number Diff line number Diff line
@@ -67,6 +67,9 @@ cc_library_static {
    cflags: [
        "-DBUILDCFG",
    ],
    apex_available: [
        "com.android.bluetooth",
    ],
    min_sdk_version: "Tiramisu"
}

+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@ cc_library_static {
        "srce",
    ],
    host_supported: true,
    apex_available: [
        "com.android.bluetooth",
    ],
    min_sdk_version: "Tiramisu"
}

+3 −0
Original line number Diff line number Diff line
@@ -30,5 +30,8 @@ cc_library_static {
        "packages/modules/Bluetooth/system/stack/include",
    ],
    host_supported: true,
    apex_available: [
        "com.android.bluetooth",
    ],
    min_sdk_version: "Tiramisu"
}
+3 −0
Original line number Diff line number Diff line
@@ -216,6 +216,9 @@ cc_library {
    defaults: [
        "libbluetooth_gd_defaults",
    ],
    apex_available: [
        "com.android.bluetooth",
    ],
    min_sdk_version: "31",
}

Loading