mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
16 lines
544 B
Bash
16 lines
544 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
export CURL='curl --location --retry 5'
|
||
|
|
||
|
ANDROID_SDK_VERSION='3859397'
|
||
|
ANDROID_SDK_SHA256='444e22ce8ca0f67353bda4b85175ed3731cae3ffa695ca18119cbacef1c1bea0'
|
||
|
SDK_ZIP_LOCATION="$HOME/sdk-tools-linux.zip"
|
||
|
|
||
|
$CURL --output "$SDK_ZIP_LOCATION" "https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_VERSION}.zip"
|
||
|
echo "$ANDROID_SDK_SHA256 $SDK_ZIP_LOCATION" | sha256sum --check
|
||
|
unzip -d "$ANDROID_SDK_ROOT" "$SDK_ZIP_LOCATION"
|
||
|
rm "$SDK_ZIP_LOCATION"
|
||
|
yes | "${ANDROID_SDK_ROOT}/tools/bin/sdkmanager" --licenses
|