aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2022-06-09 21:26:56 +0000
committerPaul Duffin <paulduffin@google.com>2022-06-13 12:55:00 +0000
commit350760127fa3031d996736483862cf641fe6d06d (patch)
tree2911040b8e9069acf2cdbf068808157dd2a59424
parente75e7c57e75f8099a8bfdcdcd1c30d3f32797746 (diff)
downloadcommon-350760127fa3031d996736483862cf641fe6d06d.tar.gz
Add bluetooth and uwb as optional modules
Bug: 233965247 Test: packages/modules/common/build/mainline_modules_sdks.sh # Check the output to ensure that uwb/bluetooth uses the # module specific Soong config. # Unpack the bluetooth/uwb snapshots into prebuilts/module_sdk/... m nothing Ignore-AOSP-First: Bluetooth and uwb are not present in AOSP Change-Id: I09c7b2ef95f941e61eba933b4e9b3625c01adfeb
-rwxr-xr-xbuild/mainline_modules_sdks.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/mainline_modules_sdks.py b/build/mainline_modules_sdks.py
index a4dd1aca..2f4daa6f 100755
--- a/build/mainline_modules_sdks.py
+++ b/build/mainline_modules_sdks.py
@@ -771,6 +771,8 @@ MAINLINE_MODULES = [
apex="com.android.bluetooth",
sdks=["bluetooth-module-sdk"],
first_release=Tiramisu,
+ # Bluetooth has always been and is still optional.
+ last_optional_release=LATEST,
),
MainlineModule(
apex="com.android.conscrypt",
@@ -861,6 +863,8 @@ MAINLINE_MODULES = [
apex="com.android.uwb",
sdks=["uwb-module-sdk"],
first_release=Tiramisu,
+ # Uwb has always been and is still optional.
+ last_optional_release=LATEST,
),
MainlineModule(
apex="com.android.wifi",