This is a simple Python module to help you build Android projects, from code to apk. It exists because I can't stand Ant.
This is not a standalone build tool, but a collection of routines with which you can build your Android project by writing Python code, or by using a Python-based tool like fabric.
Tested with Android SDK 2.3 (older versions might not work).
Android's build process, that is, what this module implements, is outlined here in detail:
http://developer.android.com/guide/developing/building/index.html#detailed-build
Install the current development version:
$ easy_install https://github.com/miracle2k/py-androidbuild/tarball/master
There is also a version in the Python cheeseshop. but it may be old:
$ easy_install py-androidbuild
The simplest case will look something like this:
from android.build import AndroidProject project = AndroidProject('AndroidManifest.xml', sdk_dir='/opt/android') apk = project.build() apk.sign('keystore', 'alias', 'name') apk.align()
The AndroidProject
class assumes a default Android directory layout,
that is it espects to find things like a ./res
and a ./src
directory next to the AndroidManifest.xml
.
Or:
from android.build import AndroidProject project = AndroidProject('AndroidManifest.xml', sdk_dir='/opt/android') try: for version in ('free', 'pay'): # You may want to hard-exclude certain code so it can't just be # re-enabled, or whatever you need to do. make_adjustments_for_version(version) # Recompile the code. project.compile() # For each version, build different configurations. # In the end, you'll have 12 apk files. for lang in ('de', 'en', 'fr'): for density in ('mdpi', 'hdpi',): project.build('%s-%s-%s.apk' % (version, lang, density), config='%s,%s' % (lang, density)) finally: project.clean()
If you need to build multiple versions of your app, you need to use different package names:
... project.build(package_name='com.foo.app.donate', version_code=5) project.build(package_name='com.foo.app.free', version_code=5)
Note in the previous example how you can also manage your version
numbers outside of the AndroidManifest.xml
file.
Rather than relying on the default project layout that AndroidProject
assumes, you can also use a more low-level API:
platform = get_platform('/opt/android/sdk', target='10') code = platform.compile('AndroidManifest.xml', 'src', 'res') res = platform.pack_resources('AndroidManifest.xml', 'res') apk = p.build_apk('unsigned-unaligned.apk', code, res) code.delete() res.delete()
Should it become necessary, you are also free to do things even more low-level than that. What follows is a quick overview of all the APIs used during a build:
platform = get_platform('/opt/android/sdk', target='10') platform.generate_r(...) platform.compile_renderscript(...) platform.compile_aidl(...) platform.compile_native() platform.compile_java(...) platform.dex(...) platform.package_resources(...) platform.build_apk(...) platform.sign(...) platform.align(...)
Here is a build script that I use in production:
https://github.com/miracle2k/android-autostarts/blob/master/fabfile.py
If your project contains native code, simply pass an ndk_dir
argument when
creating AndroidProject
. When that value is set, the class will include
the native build steps as well:
from android.build import AndroidProject project = AndroidProject('AndroidManifest.xml', sdk_dir='/opt/android', ndk_dir="/opt/android-ndk")
Renderscript is supported. We'll do the right thing automatically.
To see what the build is doing, configure the library logger:
logging.getLogger('py-androidbuild').addHandler(logging.StreamHandler())
If something goes wrong, an ProgramFailedError
is raised which holds
all the relevant information:
try: project.build() except ProgramFailedError, e: print e.cmdline print e.returncode print e.stderr print e.stdout
If you've downloaded the source to an Android application which lacks an Ant build script, and you don't want to go through the whole process of installing it into Eclipse, you can do:
$ py-androidbuild SDK_DIR
This will build the project in the current directory.
Some things still need to be done - mostly because I never used the functionality in question. If you do need them, consider submitting a patch: The Android build process isn't that complicated, and so those things should be easy to implement.
- Building against extension targets like the Google Maps package hasn't been tested and might well not be possible yet.
- ProGuard obfuscation is not implememented.
- Some tests would sure be nice.
Also, referencing "Library projects" doesn't work yet. This is what is necessary to implement it:
- The user specifies a list of references to library projects (reading the dependencies from the Eclipse/Ant-specific source.properties file could be a bonus). This would probably be done on the AndroidProject level.
- In each library, libs/*.jar files are collected and a) used as a classpath with javac, b) are included in the dexing process.
- For each library, it's src/ folder is used a) as a source during AIDL compilation, b) as a source during renderscript compilation, c) as a source folder during java compilation, d) added as a sourcefolder in apkbuider.
- For each library, it's libs/ folder is included in the apkbuilder call as both a "jarfolder" and a "nativefolder".
- We might have to do something with a libraries res/ folder as well (collected by the Ant tools into "project.libraries.res"). The AaptExecLoopTask seems to --auto-add-overlay and a -S option for each such path.
- AaptExecLoopTask also generates a R.java file for each library.
Important files are:
- platform/sdk: files/ant/main_rules.xml
- platform/sdk: anttasks/src/com/android/ant/AntConstants.java
- platform/sdk: anttasks/src/com/android/ant/SetupTask.java