#!/bin/bash # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. set -e function download() { if hash curl 2>/dev/null; then curl -s -L -o "$2" "$1" elif hash wget 2>/dev/null; then wget -O "$2" "$1" else echo >&2 "No supported download tool installed. Please get either wget or curl." exit fi } function installsdk() { PROXY_ARGS="" if [[ ! -z "$HTTPS_PROXY" ]]; then PROXY_HOST="$(echo $HTTPS_PROXY | cut -d : -f 1,1)" PROXY_PORT="$(echo $HTTPS_PROXY | cut -d : -f 2,2)" PROXY_ARGS="--proxy=http --proxy_host=$PROXY_HOST --proxy_port=$PROXY_PORT" fi echo y | "$ANDROID_HOME"/tools/bin/sdkmanager $PROXY_ARGS "$@" } function installAndroidSDK { if [[ ! -d "$HOME/android-sdk" ]]; then TMP=/tmp/sdk$$.zip download 'https://dl.google.com/android/repository/tools_r25.2.3-linux.zip' $TMP unzip -qod "$HOME/android-sdk" $TMP rm $TMP fi export ANDROID_NDK_REPOSITORY=$HOME/android-ndk if [[ ! -d "$ANDROID_NDK_REPOSITORY/android-ndk-r15c" ]]; then TMP=/tmp/ndk$$.zip mkdir -p "$ANDROID_NDK_REPOSITORY" download 'https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip' $TMP unzip -qod "$ANDROID_NDK_REPOSITORY" "$TMP" rm $TMP fi export ANDROID_HOME=$HOME/android-sdk export PATH="$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$PATH" mkdir -p $ANDROID_HOME/licenses/ echo > $ANDROID_HOME/licenses/android-sdk-license echo -n d56f5187479451eabf01fb78af6dfcb131a6481e > $ANDROID_HOME/licenses/android-sdk-license installsdk 'build-tools;25.0.3' 'build-tools;26.0.2' 'platforms;android-25' 'platforms;android-26' 'ndk-bundle' 'extras;android;m2repository' 'cmake;3.6.4111459' }