buildozer/README.rst

265 lines
8.4 KiB
ReStructuredText
Raw Normal View History

2012-12-19 02:34:32 +01:00
Buildozer
=========
2012-12-20 01:02:57 +01:00
Buildozer is a tool for creating application packages easily.
2012-12-19 02:34:32 +01:00
2014-01-13 20:05:00 +01:00
The goal is to have one "buildozer.spec" file in your app directory, describing
2015-10-04 12:45:02 +02:00
your application requirements and settings such as title, icon, included modules
2014-01-13 20:05:00 +01:00
etc. Buildozer will use that spec to create a package for Android, iOS, Windows,
2015-10-04 12:45:02 +02:00
OSX and/or Linux.
2014-01-13 20:05:00 +01:00
2015-10-04 12:45:02 +02:00
Buildozer currently supports packaging for Android via the `python-for-android
<http://github.com/kivy/python-for-android/>`_
2014-01-13 20:05:00 +01:00
project, and for iOS via the kivy-ios project. Support for other operating systems
is intended in the future.
2012-12-19 02:34:32 +01:00
2015-10-04 12:45:02 +02:00
Note that this tool has nothing to do with the eponymous online build service
2014-10-27 11:51:30 +01:00
`buildozer.io <http://buildozer.io />`_.
2014-10-27 11:50:28 +01:00
Installing Buildozer with python2 support:
------------------------------------------
2012-12-19 02:34:32 +01:00
2016-09-26 01:48:43 +02:00
#. Install buildozer::
2016-05-09 02:23:03 +02:00
# via pip (latest stable, recommended)
sudo pip install buildozer
# latest dev version
sudo pip install https://github.com/kivy/buildozer/archive/master.zip
# git clone, for working on buildozer
git clone https://github.com/kivy/buildozer
cd buildozer
2016-05-09 02:23:03 +02:00
python setup.py build
sudo pip install -e .
#. Go into your application directory and run::
2012-12-19 02:34:32 +01:00
buildozer init
# edit the buildozer.spec, then
2016-05-09 02:23:03 +02:00
buildozer android_new debug deploy run
Installing Buildozer with python3 support:
------------------------------------------
The pip package does not yet support python3.
#. Install buildozer from source::
git clone https://github.com/kivy/buildozer
cd buildozer
python setup.py build
sudo pip install -e
2017-04-17 12:12:08 +02:00
#. Download and extract the Crystax NDK somewhere (~/.buildozer/crystax-ndk is one option): https://www.crystax.net/en/download
#. Go into your application directory and execute::
buildozer init
2016-09-26 21:49:08 +02:00
#. Make sure the following lines are in your buildozer.spec file.::
2017-04-17 12:12:08 +02:00
# Require python3crystax:
requirements = python3crystax,kivy
2017-04-17 12:12:08 +02:00
# Point to the directory where you extracted the crystax-ndk:
android.ndk_path = <Your install path here. Use ~ for home DIR>
#. Finally, build, deploy and run the app on your phone::
buildozer android_new debug deploy run
2016-09-26 01:48:43 +02:00
#. Please note the "android_new" buildozer target, and use that for any and all buildozer commands you run (even if the docs just say "android"). Python3 only works with the **android_new** toolchain.
Examples of Buildozer commands:
--------------------------------
::
# buildozer target command
2016-05-09 02:23:03 +02:00
buildozer android_new clean
buildozer android_new update
buildozer android_new deploy
buildozer android_new debug
buildozer android_new release
2012-12-20 01:04:39 +01:00
# or all in one (compile in debug, deploy on device)
2016-05-09 02:23:03 +02:00
buildozer android_new debug deploy
# set the default command if nothing set
2016-05-09 02:23:03 +02:00
buildozer setdefault android_new debug deploy run
Usage
-----
::
2016-05-09 02:23:03 +02:00
Usage:
buildozer [--profile <name>] [--verbose] [target] <command>...
buildozer --version
Available targets:
2016-05-09 02:23:03 +02:00
android Android target, based on python-for-android project (old toolchain)
ios iOS target, based on kivy-ios project
android_new Android target, based on python-for-android project (new toolchain)
Global commands (without target):
2016-05-09 02:23:03 +02:00
distclean Clean the whole Buildozer environment.
2012-12-20 01:01:19 +01:00
help Show the Buildozer help.
init Create a initial buildozer.spec in the current directory
2016-05-09 02:23:03 +02:00
serve Serve the bin directory via SimpleHTTPServer
setdefault Set the default command to run when no arguments are given
2012-12-20 01:01:19 +01:00
version Show the Buildozer version
Target commands:
2016-05-09 02:23:03 +02:00
clean Clean the target environment
update Update the target dependencies
debug Build the application in debug mode
release Build the application in release mode
deploy Deploy the application on the device
run Run the application on the device
serve Serve the bin directory via SimpleHTTPServer
Target "android" commands:
adb Run adb from the Android SDK. Args must come after --, or
use --alias to make an alias
logcat Show the log from the device
Target "ios" commands:
list_identities List the available identities to use for signing.
xcode Open the xcode project.
Target "android_new" commands:
adb Run adb from the Android SDK. Args must come after --, or
use --alias to make an alias
logcat Show the log from the device
p4a Run p4a commands. Args must come after --, or use --alias
to make an alias
2012-12-19 02:34:32 +01:00
buildozer.spec
--------------
2012-12-20 00:48:24 +01:00
See `buildozer/default.spec <https://raw.github.com/kivy/buildozer/master/buildozer/default.spec>`_ for an up-to-date spec file.
Default config
--------------
You can override the value of *any* buildozer.spec config token by
setting an appropriate environment variable. These are all of the
form ``$SECTION_TOKEN``, where SECTION is the config file section and
TOKEN is the config token to override. Dots are replaced by
underscores.
For example, here are some config tokens from the [app] section of the
config, along with the environment variables that would override them.
- ``title`` -> ``$APP_TITLE``
- ``package.name`` -> ``$APP_PACKAGE_NAME``
- ``android.p4a_dir`` -> ``$APP_ANDROID_P4A_DIR``
2017-04-17 12:31:12 +02:00
Buildozer Virtual Machine
-------------------------
2017-04-17 12:35:55 +02:00
The current virtual machine (available via https://kivy.org/downloads/) allow
2017-04-17 12:31:12 +02:00
you to have a ready to use vm for building android application. But
the current one have many flaw.
We're in the process to deliver a new VM that fixes most of them.
2017-04-17 12:35:19 +02:00
Using shared folders
++++++++++++++++++++
2017-04-17 12:31:12 +02:00
The Virtualbox Guest tools are outdated, install the latest one:
2017-04-17 12:35:55 +02:00
2017-04-17 12:31:12 +02:00
- in the Virtualbox: `Devices` -> `Install Guest Additions CD images`
- in the guest/linux: Go to the cdrom and run the installer
The `kivy` user is not in the `vboxsf` groups, so in a terminal:
2017-04-17 12:36:54 +02:00
2017-04-17 12:31:12 +02:00
- `sudo adduser kivy vboxsf`
- reboot the vm
VirtualBox filesystem doesn't support symlink anymore (don't
try the setextradata solution, it doesn't work.). So you must
do the build outside the shared folder. One solution:
2017-04-17 12:35:19 +02:00
2017-04-17 13:01:39 +02:00
- `sudo mkdir /build`
- `sudo chown kivy /build`
2017-04-17 12:31:12 +02:00
- In your buildozer.spec, section `[buildozer]`, set `build_dir = /build/buildozer-myapp`
2017-04-17 12:35:19 +02:00
No space left
+++++++++++++
2017-04-17 12:31:12 +02:00
If you build on the current VM, you'll hit the no space left on device:
2017-04-17 12:35:19 +02:00
2017-04-17 12:31:12 +02:00
- Stop your VM
- Adjust the disk size to 20GB: `VBoxManage modifyhd ~/Downloads/Buildozer/Buildozer.vdi --resize 20000`
- Download the http://www.slitaz.org/en/get/#stable
- In the virtualbox, `Devices` -> `Optical Drive` -> Select the slitaz iso
- Reboot the VM
- In slitaz, open a terminal, and unmount the swap: `swapoff -a`
- Open gparted
- delete sda2
- extend sda1 to 18000
- add a primary partition, set the format to linux-swap
- you should have a sda2 partition
- save
- Unmount the slitaz iso `Devices` -> `Optical Drive` -> `Eject`
- Reset/Restart the VM
- Check your disk is 20GB: `df -h`
2017-04-17 12:35:19 +02:00
Using your devices via the VM
+++++++++++++++++++++++++++++
2017-04-17 12:31:12 +02:00
There is a little icon on the bottom left that represent an USB plug.
Select it, and select your android device on it. Then you can check:
2017-04-17 12:35:55 +02:00
2017-04-17 12:31:12 +02:00
- `buildozer android_new adb -- devices`
If it doesn't, use Google. They are so many differents way / issues
depending your phone that Google will be your only source of
information, not us :)
Support
-------
If you need assistance, you can ask for help on our mailing list:
* User Group : https://groups.google.com/group/kivy-users
* Email : kivy-users@googlegroups.com
We also have an IRC channel:
* Server : irc.freenode.net
* Port : 6667, 6697 (SSL only)
* Channel : #kivy
Contributing
------------
We love pull requests and discussing novel ideas. Check out our
2015-11-03 16:00:22 +01:00
`contribution guide <http://kivy.org/docs/contribute.html>`_ and
feel free to improve buildozer.
The following mailing list and IRC channel are used exclusively for
discussions about developing the Kivy framework and its sister projects:
* Dev Group : https://groups.google.com/group/kivy-dev
* Email : kivy-dev@googlegroups.com
IRC channel:
* Server : irc.freenode.net
* Port : 6667, 6697 (SSL only)
* Channel : #kivy-dev
License
-------
2015-11-03 16:00:22 +01:00
Buildozer is released under the terms of the MIT License. Please refer to the
LICENSE file.