From 157a2a7173345877d8e7defb09cd5ff653eba341 Mon Sep 17 00:00:00 2001 From: Bruno Martins Date: Fri, 11 Mar 2022 12:10:45 +0000 Subject: [PATCH] config: Create makefiles for tablets with telephony support So far, tablets with telephony have been inheriting from common_full_phone.mk, but that's not really proper because such makefile now enables one-handed mode support (setting prop ro.support_one_handed_mode to true). Fix this by creating new makefiles that can be used also to include more tablet-specific configs moving forward. Change-Id: I90c22badb17911ef5e873299d986204718300e6c --- config/common_full_tablet.mk | 11 +++++++++++ config/common_mini_tablet.mk | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 config/common_full_tablet.mk create mode 100644 config/common_mini_tablet.mk diff --git a/config/common_full_tablet.mk b/config/common_full_tablet.mk new file mode 100644 index 00000000..224e454e --- /dev/null +++ b/config/common_full_tablet.mk @@ -0,0 +1,11 @@ +# Inherit full common Lineage stuff +$(call inherit-product, vendor/lineage/config/common_full.mk) + +# Required packages +PRODUCT_PACKAGES += \ + LatinIME + +# Include Lineage LatinIME dictionaries +PRODUCT_PACKAGE_OVERLAYS += vendor/lineage/overlay/dictionaries + +$(call inherit-product, vendor/lineage/config/telephony.mk) diff --git a/config/common_mini_tablet.mk b/config/common_mini_tablet.mk new file mode 100644 index 00000000..6b2c57ad --- /dev/null +++ b/config/common_mini_tablet.mk @@ -0,0 +1,8 @@ +# Inherit mini common Lineage stuff +$(call inherit-product, vendor/lineage/config/common_mini.mk) + +# Required packages +PRODUCT_PACKAGES += \ + LatinIME + +$(call inherit-product, vendor/lineage/config/telephony.mk)