Initial commit

This commit is contained in:
Mark Qvist 2022-04-07 21:03:53 +02:00
parent 765f72a3ab
commit 70e49c8e6f
13 changed files with 2827 additions and 0 deletions

29
Makefile Normal file
View file

@ -0,0 +1,29 @@
all: prepare debug
prepare: activate
clean:
buildozer android clean
activate:
(. venv/bin/activate)
(mv setup.py setup.disabled)
debug:
buildozer android debug
release:
buildozer android release
apk: prepare release
devapk: prepare debug
install:
adb install bin/sideband-0.0.1-arm64-v8a-debug.apk
console:
(adb logcat | grep python)
getrns:
(rm ./RNS -r;cp -rv ../Reticulum/RNS ./;rm ./RNS/Utilities/RNS;rm ./RNS/__pycache__ -r)