-
-
Save the-jedi-droid/0b1fbc44ae8ad5130500aaf496ed6902 to your computer and use it in GitHub Desktop.
Install Android SDK on headless Ubuntu linux machine via command line, so that you can compile open source Android apps.
This file contains 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
#!/bin/bash | |
# Thanks to https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7 | |
# Execute this script in your home directory. Lines 17 and 21 will prompt you for a y/n | |
# Install Oracle JDK 8 | |
add-apt-repository ppa:webupd8team/java | |
apt-get update | |
apt-get install -y oracle-java8-installer | |
apt-get install -y unzip make # NDK stuff | |
# Get SDK tools (link from https://developer.android.com/studio/index.html#downloads) | |
wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz | |
tar xf android-sdk*-linux.tgz | |
# Get NDK (https://developer.android.com/ndk/downloads/index.html) | |
wget https://dl.google.com/android/repository/android-ndk-r12b-linux-x86_64.zip | |
uznip android-ndk*.zip | |
# Let it update itself and install some stuff | |
cd android-sdk-linux/tools | |
./android update sdk --no-ui | |
# Download every build-tools version that has ever existed | |
# This will save you time! Thank me later for this | |
./android update sdk --all --no-ui --filter $(seq -s, 27) | |
# If you need additional packages for your app, check available packages with: | |
# ./android list sdk --all | |
# install certain packages with: | |
# ./android update sdk --no-ui --all --filter 1,2,3,<...>,N | |
# where N is the number of the package in the list (see previous command) | |
# Add the directory containing executables in PATH so that they can be found | |
echo 'export ANDROID_HOME=$HOME/android-sdk-linux' >> ~/.bashrc | |
echo 'export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools' >> ~/.bashrc | |
source ~/.bashrc | |
# Make sure you can execute 32 bit executables if this is 64 bit machine, otherwise skip this | |
dpkg --add-architecture i386 | |
apt-get update | |
apt-get install -y libc6:i386 libstdc++6:i386 zlib1g:i386 | |
# Add some swap space, useful if you've got less than 2G of RAM | |
fallocate -l 2G /swapfile | |
chmod 600 /swapfile | |
mkswap /swapfile | |
swapon /swapfile | |
# Optionally run build system as daemon (speeds up build process) | |
mkdir ~/.gradle | |
echo 'org.gradle.daemon=true' >> ~/.gradle/gradle.properties | |
# See here: https://www.timroes.de/2013/09/12/speed-up-gradle/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment