summaryrefslogtreecommitdiff
path: root/android/buildapk.sh
diff options
context:
space:
mode:
Diffstat (limited to 'android/buildapk.sh')
-rwxr-xr-xandroid/buildapk.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/android/buildapk.sh b/android/buildapk.sh
new file mode 100755
index 0000000000..340438721a
--- /dev/null
+++ b/android/buildapk.sh
@@ -0,0 +1,19 @@
1#!/bin/sh
2
3BUILDDIR=$1
4APK=$2
5SDKV=$3
6
7[ -z $ANDROID_SDK_PATH ] && exit 1
8[ -z $BUILDDIR ] && exit 1
9[ -d $BUILDDIR ] || exit 1
10
11# need to cd into the bin dir and create a symlink to the libraries
12# so that aapt puts the libraries with the correct prefix into the apk
13cd $BUILDDIR/bin
14ln -nfs $BUILDDIR/libs lib
15cp resources.ap_ $APK
16$ANDROID_SDK_PATH/build-tools/$SDKV/aapt add $APK classes.dex > /dev/null
17$ANDROID_SDK_PATH/build-tools/$SDKV/aapt add $APK lib/*/* > /dev/null
18
19exit 0