xwords/xwords4/android/scripts/ndkbuild.sh
Eric House 3ac0039b4d fix jni build. Full .apk now produced.
But it gets confused about downloading wordlists.
2017-01-18 08:33:49 -08:00

24 lines
438 B
Bash
Executable file

#!/bin/sh
set -e -u
ANDROID_NDK=${ANDROID_NDK:-''}
if [ ! -d jni ]; then
echo "no jni directory; please run from root of source tree"
exit 1
fi
if [ -z "$ANDROID_NDK" ]; then
if which ndk-build >/dev/null; then
ANDROID_NDK=$(dirname $(which ndk-build))
else
echo -n "ANDROID_NDK not set... "
echo "NDK not found; install and set ANDROID_NDK to point to it"
exit 1
fi
fi
${ANDROID_NDK}/ndk-build $*
echo "$0 done"