From 03a66b43a38073895b05bf9cd440cebd9930ab92 Mon Sep 17 00:00:00 2001 From: Julio Sangrador-Paton Date: Thu, 16 Oct 2025 00:45:31 +0200 Subject: [PATCH 1/3] Update rawdraw to latest master --- rawdraw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rawdraw b/rawdraw index a33dea9..94cdc31 160000 --- a/rawdraw +++ b/rawdraw @@ -1 +1 @@ -Subproject commit a33dea90155b3cee51cb89dd18c65565aa5a9f98 +Subproject commit 94cdc3159874c68ddaee3498cd20f6adb1c5fe45 From 358bff76c0d851c87c6beab905a4eb503cbd3c25 Mon Sep 17 00:00:00 2001 From: Julio Sangrador-Paton Date: Thu, 16 Oct 2025 16:50:49 +0200 Subject: [PATCH 2/3] Add KEYSTOREFILE as a precondition for the `run` make target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 223f12a..e16a889 100644 --- a/Makefile +++ b/Makefile @@ -169,7 +169,7 @@ makecapk/lib/x86_64/lib$(APPNAME).so : $(ANDROIDSRCS) # $(APKFILE) # zipalign'ed and signed makecapk.apk -makecapk.apk : $(TARGETS) $(EXTRA_ASSETS_TRIGGER) AndroidManifest.xml +makecapk.apk : $(TARGETS) $(EXTRA_ASSETS_TRIGGER) AndroidManifest.xml $(KEYSTOREFILE) mkdir -p makecapk/assets cp -r Sources/assets/* makecapk/assets rm -rf temp.apk From a520051ea458ef27dbd3e41cf3914af9adb3d07b Mon Sep 17 00:00:00 2001 From: Julio Sangrador-Paton Date: Thu, 16 Oct 2025 16:51:18 +0200 Subject: [PATCH 3/3] Build all architectures by default --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e16a889..b9aadec 100644 --- a/Makefile +++ b/Makefile @@ -110,9 +110,9 @@ AAPT:=$(BUILD_TOOLS)/aapt # Which binaries to build? Just comment/uncomment these lines: TARGETS += makecapk/lib/arm64-v8a/lib$(APPNAME).so -#TARGETS += makecapk/lib/armeabi-v7a/lib$(APPNAME).so -#TARGETS += makecapk/lib/x86/lib$(APPNAME).so -#TARGETS += makecapk/lib/x86_64/lib$(APPNAME).so +TARGETS += makecapk/lib/armeabi-v7a/lib$(APPNAME).so +TARGETS += makecapk/lib/x86/lib$(APPNAME).so +TARGETS += makecapk/lib/x86_64/lib$(APPNAME).so CFLAGS_ARM64:=-m64 CFLAGS_ARM32:=-mfloat-abi=softfp -m32