Created
February 21, 2025 13:47
-
-
Save AlexGladkov/740c9a747e199c9c141c4641f194c5c5 to your computer and use it in GitHub Desktop.
Android Helper
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
# Check if Android SDK not found (Run on VPS) | |
ls -la /root/Android/Sdk | |
ls -la $ANDROID_HOME | |
# Fix wrong directory Android (Run on VPS) | |
mkdir -p /root/Android/Sdk | |
export ANDROID_HOME="/root/Android/Sdk" | |
sudo mv /root/Android/Sdk /opt/android-sdk | |
sudo chown -R jenkins:jenkins /opt/android-sdk | |
sudo chmod -R 777 /opt/android-sdk | |
# Install Android SDK | |
sudo apt update | |
sudo apt install unzip | |
mkdir -p /opt/android-sdk/cmdline-tools | |
cd /opt/android-sdk/cmdline-tools | |
wget https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip | |
unzip commandlinetools-linux-*.zip | |
mv cmdline-tools latest | |
rm commandlinetools-linux-*.zip | |
# Acccept Android license (Run on VPS) | |
yes | /opt/android-sdk/cmdline-tools/latest/bin/sdkmanager --licenses | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment