Shape for Android ================= Shape for Android is a demonstration application delivered with ORTE source code. How to create shape_android.apk ----------------------------- 1] Update Android SDK to include Android 4.0.3 (API 15) /tools/android update sdk --no-ui --all --filter android-15 2] Clone ORTE project from git git clone git://rtime.felk.cvut.cz/orte cd orte/orte 3] Update libaorte and shape_android projects /tools/android update project -p libaorte /tools/android update project -p contrib/shape_android -n orte_shape 4] Build libaorte cd libaorte /ndk-build 5] Build shape_android cd ../contrib/shape_android ant debug 6] Install shape_android /platform-tools/adb install -r bin/orte_shape-debug.apk --- !! Note that in case you haven't renamed the project, in step 7] you should run command: /platform-tools/adb install -r bin/PublisherActivity-debug.apk !! Note that there is kind of problem with aapt for some architectures, when running "ant debug" command. On my pc - 32bit, Debian GNU/Linux 7.8 (wheezy), the problem was solved in directory /build-tools/21.1.2 like this: $mv aapt _aapt $vi aapt #!/bin/bash qemu-i386 -cpu n270 -L / /build-tools/21.1.2/_aapt $@ Means that aapt is run in qemu. Build then was sucessful.