From 9cbe895cb88850586d70da8e26c5023dcd066e0d Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 30 Apr 2023 13:24:01 +0000 Subject: [PATCH] Exclude .map files from the APK to squeeze them under the blob size limit. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4277 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28b6d8b2..d97eef6a 100644 --- a/Makefile +++ b/Makefile @@ -480,7 +480,7 @@ out/%.unsigned.apk: @cp out/apk/res.apk $@ @cp out/apk/classes.dex out/apk$(BUILD_TYPE)/ @cd out/apk$(BUILD_TYPE) && zip -u ../../$@ -q -9 -r . && cd ../../ - @zip -u $@ -q -9 -r $(PACKAGE_DIRS) $(RAW_FILES) + @zip -u $@ -q -9 -x '*.map' -r $(PACKAGE_DIRS) $(RAW_FILES) out/%.apk: out/apk/%.unsigned.apk @echo [apksigner] $(notdir $@)