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

46 lines
1.5 KiB
Bash
Raw Normal View History

2016-05-27 22:24:50 +00:00
#!/bin/sh
set -e -u
# Install desired parts of the Android SDK:
. $(cd "$(dirname "$0")"; pwd)/properties.sh
ANDROID_SDK_FILE=sdk-tools-linux-4333796.zip
ANDROID_SDK_SHA256=92ffee5a1d98d856634e8b71132e8a95d96c83a63fde1099be3d86df3106def9
2019-02-21 21:40:37 +00:00
ANDROID_NDK_FILE=android-ndk-r${TERMUX_NDK_VERSION}-Linux-x86_64.zip
2020-07-08 04:58:23 +00:00
ANDROID_NDK_SHA256=dd6dc090b6e2580206c64bcee499bc16509a5d017c6952dcd2bed9072af67cbd
2016-05-27 22:24:50 +00:00
if [ ! -d $ANDROID_HOME ]; then
mkdir -p $ANDROID_HOME
cd $ANDROID_HOME/..
2019-02-12 08:41:30 +00:00
rm -Rf $(basename $ANDROID_HOME)
2016-05-27 22:24:50 +00:00
# https://developer.android.com/studio/index.html#command-tools
# The downloaded version below is 26.1.1.:
echo "Downloading android sdk..."
curl --fail --retry 3 \
-o tools.zip \
https://dl.google.com/android/repository/${ANDROID_SDK_FILE}
echo "${ANDROID_SDK_SHA256} tools.zip" | sha256sum -c -
rm -Rf android-sdk
unzip -q tools.zip -d android-sdk
rm tools.zip
2016-05-27 22:24:50 +00:00
fi
if [ ! -d $NDK ]; then
mkdir -p $NDK
cd $NDK/..
2019-02-12 08:41:30 +00:00
rm -Rf $(basename $NDK)
echo "Downloading android ndk..."
curl --fail --retry 3 -o ndk.zip \
https://dl.google.com/android/repository/${ANDROID_NDK_FILE}
echo "${ANDROID_NDK_SHA256} ndk.zip" | sha256sum -c -
rm -Rf android-ndk-r$TERMUX_NDK_VERSION
2016-05-27 22:24:50 +00:00
unzip -q ndk.zip
2019-02-12 08:41:30 +00:00
mv android-ndk-r$TERMUX_NDK_VERSION $(basename $NDK)
2016-05-27 22:24:50 +00:00
rm ndk.zip
fi
yes | $ANDROID_HOME/tools/bin/sdkmanager --licenses
# The android platforms are used in the ecj and apksigner packages:
yes | $ANDROID_HOME/tools/bin/sdkmanager "platform-tools" "build-tools;${TERMUX_ANDROID_BUILD_TOOLS_VERSION}" "platforms;android-28" "platforms;android-24" "platforms;android-21"