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:
11
config/common_full_tablet.mk
Normal file
11
config/common_full_tablet.mk
Normal 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)
|
8
config/common_mini_tablet.mk
Normal file
8
config/common_mini_tablet.mk
Normal 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)
|
Reference in New Issue
Block a user