Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gsteixeira/buildozo
Docker image for Buildozer in order to compile Kivy applications
https://github.com/gsteixeira/buildozo
kivy
Last synced: 2 days ago
JSON representation
Docker image for Buildozer in order to compile Kivy applications
- Host: GitHub
- URL: https://github.com/gsteixeira/buildozo
- Owner: gsteixeira
- License: gpl-3.0
- Created: 2017-03-15T14:44:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-28T15:38:03.000Z (over 7 years ago)
- Last Synced: 2024-11-06T09:13:18.250Z (about 2 months ago)
- Topics: kivy
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# buildozo
A docker image to build Kivy applications to Android with BuildozerInstallation:
```shell
# set DEV_DIR enviroment variable with the directory you store your sources
export DEV_DIR=/path/to/your/sources/
# Clone it
git clone https://github.com/gstsistemas/buildozo/
cd buildozo
# Build it
./build
# Then you can run with:
./run```
Once inside the container, you can build an APK with buildozer as follows:
```shell
cd /devel/your_source_dir
buildozer android debug```
It mounts /devel inside container to your DEV_DIR. So you can find your code there.During image building, it clones an kivy project and compiles that, does this in order to test if building is OK and also to populate .buildozer directory.
I hope it helps you.