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
This commit is contained in:
Bruno Martins
2022-03-11 12:10:45 +00:00
parent a6fd6339fd
commit 157a2a7173
2 changed files with 19 additions and 0 deletions

View File

@@ -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)

View File

@@ -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)