From 9e099a001c1a6aa274d0998169c92408b4525fc9 Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Wed, 23 Sep 2020 14:19:25 +0530 Subject: [PATCH] Set MINIMAL_APPS to false by default if not set already. Change-Id: I77082fd913612985ce4261299fd0e2239cbee9c8 --- config/common.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/common.mk b/config/common.mk index 90cf03624..36955abda 100644 --- a/config/common.mk +++ b/config/common.mk @@ -152,6 +152,11 @@ PRODUCT_PACKAGES += \ ESmsSync \ PwaPlayer +# If MINIMAL_APPS is not set, set it to false by default. +ifndef MINIMAL_APPS + MINIMAL_APPS := false +endif + # Optional Applications ifeq ($(MINIMAL_APPS),false) PRODUCT_PACKAGES += \ -- GitLab