mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
10 lines
289 B
Bash
Executable File
10 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +x
|
|
|
|
ANDROID_SDK_VERSION=3859397
|
|
|
|
curl -o "$HOME/sdk-tools-linux.zip" "https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_VERSION}.zip"
|
|
unzip -d "$ANDROID_SDK_ROOT" "$HOME/sdk-tools-linux.zip"
|
|
yes | "${ANDROID_SDK_ROOT}/tools/bin/sdkmanager" --licenses
|