From 4149ed28081d81e299dbf80bf16addd3d7002e95 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/common.mk b/config/common.mk index db518fc01..ab8efbbea 100644 --- a/config/common.mk +++ b/config/common.mk @@ -133,6 +133,12 @@ PRODUCT_PACKAGES += \ ESmsSync \ SystemUIWithLegacyRecents \ + +# 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