diff options
author | 2025-03-18 23:24:57 -0700 | |
---|---|---|
committer | 2025-03-18 23:24:57 -0700 | |
commit | 05085ae52a86b2bc497dbdda1fc43d9d829036c4 (patch) | |
tree | 06c80ec63a9e82b71630dc4054edd84a1517c6f9 | |
parent | 30f05352c3e6f4333c77d4af66c253572d3ea6c9 (diff) | |
parent | e5ba6b072a5c6201c837da98c6fbf61c47a3f9e6 (diff) |
Merge "StatementService is not an Android system module" into main
-rw-r--r-- | target/product/generic/Android.bp | 6 | ||||
-rw-r--r-- | target/product/media_system.mk | 1 | ||||
-rw-r--r-- | target/product/media_system_ext.mk | 3 |
3 files changed, 8 insertions, 2 deletions
diff --git a/target/product/generic/Android.bp b/target/product/generic/Android.bp index c90c61cca6..391621f503 100644 --- a/target/product/generic/Android.bp +++ b/target/product/generic/Android.bp @@ -382,6 +382,11 @@ android_filesystem_defaults { "android.hidl.allocator@1.0-service", /////////////////////////////////////////// + // media_system_ext + /////////////////////////////////////////// + "StatementService", + + /////////////////////////////////////////// // window_extensions_base /////////////////////////////////////////// "androidx.window.extensions", @@ -809,7 +814,6 @@ system_image_defaults { "Shell", // base_system "SimAppDialog", // handheld_system "SoundPicker", // not installed by anyone - "StatementService", // media_system "Stk", // generic_system "Tag", // generic_system "TeleService", // handheld_system diff --git a/target/product/media_system.mk b/target/product/media_system.mk index af3857ebc1..4df71516ab 100644 --- a/target/product/media_system.mk +++ b/target/product/media_system.mk @@ -35,7 +35,6 @@ PRODUCT_PACKAGES += \ libwebviewchromium_plat_support \ make_f2fs \ requestsync \ - StatementService \ PRODUCT_HOST_PACKAGES += \ fsck.f2fs \ diff --git a/target/product/media_system_ext.mk b/target/product/media_system_ext.mk index e79a7eb5d1..455a253436 100644 --- a/target/product/media_system_ext.mk +++ b/target/product/media_system_ext.mk @@ -20,5 +20,8 @@ # base_system_ext.mk. $(call inherit-product, $(SRC_TARGET_DIR)/product/base_system_ext.mk) +PRODUCT_PACKAGES += \ + StatementService \ + # Window Extensions $(call inherit-product, $(SRC_TARGET_DIR)/product/window_extensions_base.mk) |