Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 766 Bytes

make.md

File metadata and controls

23 lines (16 loc) · 766 Bytes

make.py : a command line to build/install the apk

It's a command line for the full process ! You will need a linux host where docker, git, adb & pidcat are availables. (you'll need to install them)

Give the "execution" rights to make.py :

chmod +x ./make.py

./make.py test

Test your app in your current browser (good practice before building ;-))

./make.py build

Build the apk in app/bin folder ! (debug mode)

./make.py install

[need plugged device] Plug you device (with usb cable), and it will install & run the apk in the device

./make.py debug

[need plugged device] Follow the logs from your app running in the device

./make.py clean

clean all (delete apks and app/.buildozer on your computer)