summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/build_id.mk2
-rw-r--r--target/product/handheld_system.mk6
-rw-r--r--target/product/handheld_system_ext.mk8
3 files changed, 12 insertions, 4 deletions
diff --git a/core/build_id.mk b/core/build_id.mk
index 07619e8425..bf17a5b751 100644
--- a/core/build_id.mk
+++ b/core/build_id.mk
@@ -18,4 +18,4 @@
# (like "CRB01"). It must be a single word, and is
# capitalized by convention.
-BUILD_ID=SKQ1.220303.001
+BUILD_ID=SKQ1.220319.001
diff --git a/target/product/handheld_system.mk b/target/product/handheld_system.mk
index 0392f3f958..20c0690573 100644
--- a/target/product/handheld_system.mk
+++ b/target/product/handheld_system.mk
@@ -57,7 +57,6 @@ PRODUCT_PACKAGES += \
MusicFX \
PacProcessor \
PrintRecommendationService \
- PrintSpooler \
ProxyHandler \
screenrecord \
SharedStorageBackup \
@@ -75,6 +74,11 @@ PRODUCT_PACKAGES += \
TeleService
endif #TARGET_NO_TELEPHONY
+ifneq ($(TARGET_USES_QSPA), true)
+PRODUCT_PACKAGES += \
+ PrintSpooler
+endif
+
ifneq ($(TARGET_HAS_LOW_RAM), true)
PRODUCT_PACKAGES += \
SecureElement
diff --git a/target/product/handheld_system_ext.mk b/target/product/handheld_system_ext.mk
index d935fbfddf..b6b6ed16dd 100644
--- a/target/product/handheld_system_ext.mk
+++ b/target/product/handheld_system_ext.mk
@@ -22,9 +22,13 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/media_system_ext.mk)
# /system_ext packages
PRODUCT_PACKAGES += \
- Launcher3QuickStep \
Provision \
Settings \
StorageManager \
- SystemUI \
WallpaperCropper \
+
+ifneq ($(TARGET_USES_QSPA),true)
+ PRODUCT_PACKAGES += \
+ Launcher3QuickStep \
+ SystemUI
+endif