android: raise minimum api level for native code components to 9 (Ansroid 2.3), this solves the timezone issue when compiling the wrapper. Next level up is 14 which is Android 4.0. UI components are already at level 10.

This commit is contained in:
Rom Walton 2013-01-18 15:16:59 -05:00 committed by Oliver Bock
parent b96a79f005
commit 43d8f9f16b
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@
export ANDROIDTC="$HOME/android-tc"
if [ ! -d $ANDROIDTC ]; then
$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-4 --install-dir=$ANDROIDTC
$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$ANDROIDTC
fi