From 8f47f4bd5de2b1ae2d3d4b984ba42076ebc069c0 Mon Sep 17 00:00:00 2001 From: wankanzhen Date: Tue, 11 Aug 2020 19:18:31 +0800 Subject: [PATCH] Disable SMALLER_FONT_FOOTPRINT & MINIMAL_FONT_FOOTPRINT which defaultly is enabled. Then when compiling android.img, the lost fonts will be added into image. --- products/arm64/BoardConfig.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/products/arm64/BoardConfig.mk b/products/arm64/BoardConfig.mk index cf688da..20f9f78 100644 --- a/products/arm64/BoardConfig.mk +++ b/products/arm64/BoardConfig.mk @@ -22,8 +22,8 @@ AUDIOSERVER_MULTILIB := 64 TARGET_USES_64_BIT_BINDER := true -SMALLER_FONT_FOOTPRINT := true -MINIMAL_FONT_FOOTPRINT := true +SMALLER_FONT_FOOTPRINT := false +MINIMAL_FONT_FOOTPRINT := false # Some framework code requires this to enable BT BOARD_HAVE_BLUETOOTH := true BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth -- Gitee