From 3b33da79f256bcf5922133b149650a6a5703cd09 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 3 Oct 2022 12:54:35 +0200 Subject: [PATCH] Makefiles updated --- Makefile | 4 ++++ sbapp/Makefile | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 706f815..f6714f6 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,10 @@ cleanbuildozer: cleanall: clean cleanbuildozer +preparewheel: + pyclean . + $(MAKE) -C sbapp cleanrns + build_wheel: python3 setup.py sdist bdist_wheel diff --git a/sbapp/Makefile b/sbapp/Makefile index 9c4bc83..8a85433 100644 --- a/sbapp/Makefile +++ b/sbapp/Makefile @@ -47,7 +47,8 @@ endif release: buildozer android release -postbuild: cleanrns +postbuild: + $(MAKE) cleanrns apk: prepare prebake pacthfiles release postbuild @@ -60,7 +61,7 @@ install: adb install bin/sideband-$$(python ./gv.py)-arm64-v8a-release.apk console: - (adb logcat | grep python) + (adb logcat | grep "python\|sidebandservice") getrns: (cp -rv ../../Reticulum/RNS ./;rm ./RNS/Utilities/RNS;rm ./RNS/__pycache__ -r)