Generic Python packager for Android and iOS
Go to file
Mathieu Virbel 3a24529fc3 Version 0.27
2015-03-08 22:15:42 +01:00
buildozer Version 0.27 2015-03-08 22:15:42 +01:00
docs Specs doc revision 2014-07-19 22:22:02 +03:00
.gitignore correctly update and download Android SDK with tools/platform-tools/build-tools if available. And install the API if necessary. closes #101, #21, #89. 2014-04-08 17:56:51 +02:00
CHANGELOG.md Bump to 0.26 2015-01-28 13:05:06 +01:00
CHANGES.md fixes python2 console write (as before) 2014-04-21 01:19:21 +02:00
COPYING add missing files, and publish a first version 2012-12-19 17:53:58 +01:00
LICENSE Buildozer is now under MIT license 2013-08-01 16:34:01 +02:00
MANIFEST.in reference the changelog.md in the manifest.in 2015-01-27 17:16:30 +01:00
README.rst replace git:// with https://. Closes #178 2015-03-08 10:43:02 +01:00
setup.py setup.py: add changelog in the long description 2015-01-27 17:33:17 +01:00

Buildozer
=========

This tool is currently in alpha.

Buildozer is a tool for creating application packages easily.

The goal is to have one "buildozer.spec" file in your app directory, describing
your application requirements and settings such as title, icon, included modules 
etc. Buildozer will use that spec to create a package for Android, iOS, Windows,
OSX and/or Linux. 

Buildozer currently supports packaging for Android via the `python-for-android 
<http://github.com/kivy/python-for-android/>`_
project, and for iOS via the kivy-ios project. Support for other operating systems
is intended in the future.

Note that this tool has nothing to do with the eponymous online build service 
`buildozer.io <http://buildozer.io />`_.

Usage example
-------------

#. Install buildozer::

    # latest dev
    git clone https://github.com/kivy/buildozer
    cd buildozer
    sudo python2.7 setup.py install

    # via pip (latest stable)
    sudo pip install buildozer

    # via easy_install
    sudo easy_install buildozer

#. Go into your application directory and do::

    buildozer init
    # edit the buildozer.spec, then
    buildozer android debug deploy run

Example of commands::

    # buildozer commands
    buildozer clean

    # buildozer target command
    buildozer android update
    buildozer android deploy
    buildozer android debug
    buildozer android release

    # or all in one (compile in debug, deploy on device)
    buildozer android debug deploy

    # set the default command if nothing set
    buildozer setdefault android debug deploy run


Usage
-----

::

    Usage: buildozer [--verbose] [target] [command1] [command2]

    Available targets:
      android            Android target, based on python-for-android project
      ios                iOS target, based on kivy-ios project. (not working yet.)

    Global commands (without target):
      clean              Clean the whole Buildozer environment.
      help               Show the Buildozer help.
      init               Create a initial buildozer.spec in the current directory
      setdefault         Set the default command to do when no arguments are given
      version            Show the Buildozer version

    Target commands:
      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



buildozer.spec
--------------

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``