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
12 lines
320 B
Makefile
12 lines
320 B
Makefile
# 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)
|