From 503a57b32badb09a43e2210643bb3ecadb707258 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sat, 24 Aug 2019 10:22:16 +0200 Subject: [PATCH] [Android] Don't package Droid Sans This comes preinstalled on every Android device. It's only 105.6 KiB, but every space reduction is a good one. Also opens the way to dropping Noto. Cf. . --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd4d42219..156c11d9b 100644 --- a/Makefile +++ b/Makefile @@ -347,9 +347,10 @@ androidupdate: all # in runtime luajit-launcher's libluajit.so will be loaded -rm $(INSTALL_DIR)/koreader/libs/libluajit.so - # assets are compressed manually and stored inside the APK. + # assets are compressed manually and stored inside the APK. cd $(INSTALL_DIR)/koreader && zip -r9 \ ../../$(ANDROID_LAUNCHER_DIR)/assets/module/koreader-$(VERSION).zip * \ + --exclude=*fonts/droid* \ --exclude=*resources/fonts* \ --exclude=*resources/icons/src* \ --exclude=*share/man* \