From 63e0cacc9a10f4fc2afe417b7e351cae343f3b9d Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Tue, 14 Oct 2025 23:08:51 +0530 Subject: [PATCH 1/2] Remove custom locale --- config/common.mk | 6 ------ 1 file changed, 6 deletions(-) diff --git a/config/common.mk b/config/common.mk index dde1051..a01a653 100644 --- a/config/common.mk +++ b/config/common.mk @@ -23,12 +23,6 @@ ifneq ($(TARGET_SUPPORTS_32_BIT_APPS),false) include $(call inherit-product, external/svox/svox_tts.mk) endif -# CustomLocale -ifeq (test,$(RELEASE_TYPE)) -PRODUCT_PACKAGES += \ - CustomLocale -endif - # Launcher PRODUCT_PACKAGES += \ BlissLauncher3 -- GitLab From f3ef6dabd357b4f307f8f8504b49aee8207e02de Mon Sep 17 00:00:00 2001 From: althafvly Date: Tue, 21 Oct 2025 23:36:58 +0530 Subject: [PATCH 2/2] Build correct blisslauncher target --- config/common.mk | 4 ---- config/common_mobile.mk | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/config/common.mk b/config/common.mk index a01a653..f25515f 100644 --- a/config/common.mk +++ b/config/common.mk @@ -23,10 +23,6 @@ ifneq ($(TARGET_SUPPORTS_32_BIT_APPS),false) include $(call inherit-product, external/svox/svox_tts.mk) endif -# Launcher -PRODUCT_PACKAGES += \ - BlissLauncher3 - # Overlays PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS += $(VENDOR_PATH)/overlay/no-rro diff --git a/config/common_mobile.mk b/config/common_mobile.mk index 892a5f9..47c491f 100644 --- a/config/common_mobile.mk +++ b/config/common_mobile.mk @@ -1,3 +1,18 @@ +# BlissLauncher +ifeq ($(PRODUCT_TYPE), go) +PRODUCT_PACKAGES += \ + BlissLauncher3Go + +PRODUCT_DEXPREOPT_SPEED_APPS += \ + BlissLauncher3Go +else +PRODUCT_PACKAGES += \ + BlissLauncher3 + +PRODUCT_DEXPREOPT_SPEED_APPS += \ + BlissLauncher3 +endif + # Default notification/alarm sounds PRODUCT_PRODUCT_PROPERTIES += \ ro.config.notification_sound=Selenium.ogg \ -- GitLab