2021-11-01 20:46:08 +00:00
|
|
|
# Flockompass
|
2020-07-16 16:23:44 +00:00
|
|
|
|
2021-11-01 20:46:08 +00:00
|
|
|
Mobile app, client of flock server.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
|
|
Install dependencies like so:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ pip install -r requirements.txt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Test building
|
|
|
|
|
|
|
|
|
|
Kivy apps are easily deployed and tested with [buildozer](https://buildozer.readthedocs.io/en/latest/quickstart.html#init-and-build-for-android).
|
|
|
|
|
|
|
|
|
|
This command will compile the app, transfer it to a usb-connected
|
|
|
|
|
device and run it. Logs are shown on the console, hence the grep
|
|
|
|
|
python.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ buildozer -v android debug deploy run logcat | grep python
|
|
|
|
|
```
|