Created
June 18, 2023 14:00
-
-
Save tugceaktepe/2e3fe6b5d55453d4c65628ebddeca438 to your computer and use it in GitHub Desktop.
Download Android SDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update -y | |
install -d $ANDROID_HOME | |
wget --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip --no-check-certificate | |
pushd $ANDROID_HOME | |
unzip -d cmdline-tools cmdline-tools.zip | |
popd | |
sdkmanager --version | |
yes | sdkmanager --sdk_root=${ANDROID_HOME} --licenses || true | |
sdkmanager --sdk_root=${ANDROID_HOME} "platforms;android-${ANDROID_COMPILE_SDK}" | |
sdkmanager --sdk_root=${ANDROID_HOME} "platform-tools" | |
sdkmanager --sdk_root=${ANDROID_HOME} "build-tools;${ANDROID_BUILD_TOOLS}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment