termux-packages/scripts/setup-android-sdk.sh

42 lines
1.3 KiB
Bash
Raw Normal View History

2016-05-28 00:24:50 +02:00
#!/bin/sh
set -e -u
# Install desired parts of the Android SDK:
test -f $HOME/.termuxrc && . $HOME/.termuxrc
: ${ANDROID_HOME:="${HOME}/lib/android-sdk"}
: ${NDK:="${HOME}/lib/android-ndk"}
if [ ! -d $ANDROID_HOME ]; then
mkdir -p $ANDROID_HOME
cd $ANDROID_HOME/..
rm -Rf `basename $ANDROID_HOME`
if [ `uname` = Darwin ]; then
curl --fail --retry 3 -o android-sdk.zip https://dl.google.com/android/android-sdk_r24.4.1-macosx.zip
rm -Rf android-sdk-macosx
unzip -q android-sdk.zip
mv android-sdk-macosx `basename $ANDROID_HOME`
rm android-sdk.zip
else
curl --fail --retry 3 -o android-sdk.tgz https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
rm -Rf android-sdk-linux
tar xzf android-sdk.tgz
mv android-sdk-linux `basename $ANDROID_HOME`
rm android-sdk.tgz
fi
2016-05-28 00:24:50 +02:00
fi
if [ ! -d $NDK ]; then
mkdir -p $NDK
cd $NDK/..
rm -Rf `basename $NDK`
2016-07-20 01:14:41 +02:00
curl --fail --retry 3 -o ndk.zip http://dl.google.com/android/repository/android-ndk-r12b-`uname`-x86_64.zip
2016-05-28 00:24:50 +02:00
2016-06-10 16:45:16 +02:00
rm -Rf android-ndk-r12
2016-05-28 00:24:50 +02:00
unzip -q ndk.zip
2016-06-10 16:45:16 +02:00
mv android-ndk-r12 `basename $NDK`
2016-05-28 00:24:50 +02:00
rm ndk.zip
fi
2016-07-26 13:23:39 +02:00
echo y | $ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "build-tools-24.0.1,android-23"