Add ndk r11c

This commit is contained in:
Boris Kraut 2016-08-12 20:24:54 +02:00
parent ec685342a4
commit 815961acc5
6 changed files with 12 additions and 2 deletions

View file

@ -2,6 +2,7 @@ sdk_path = "/home/vagrant/android-sdk"
ndk_paths = {
'r9b': "/home/vagrant/android-ndk/r9b",
'r10e': "/home/vagrant/android-ndk/r10e",
'r11c': "/home/vagrant/android-ndk/r11c",
'r12b': "/home/vagrant/android-ndk/r12b",
}
java_paths = {

View file

@ -20,6 +20,11 @@ if [ ! -e $NDK_BASE/r10e ]; then
mv android-ndk-r10e r10e
fi
if [ ! -e $NDK_BASE/r11c ]; then
unzip /vagrant/cache/android-ndk-r11c-linux-x86_64.zip > /dev/null
mv android-ndk-r11c r11c
fi
if [ ! -e $NDK_BASE/r12b ]; then
unzip /vagrant/cache/android-ndk-r12b-linux-x86_64.zip > /dev/null
mv android-ndk-r12b r12b