mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 15:18:22 -05:00
bc7e412c0f
Last try for the night, will revisit tomorrow
20 lines
467 B
Bash
20 lines
467 B
Bash
#!/bin/bash -
|
|
|
|
COMPONENTS="
|
|
tools
|
|
platform-tools
|
|
build-tools-21.1.1
|
|
android-21
|
|
extra-android-m2repository
|
|
extra-android-support
|
|
extra-google-m2repository"
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch
|
|
wget http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz
|
|
tar -zxvf android-sdk_r23.0.2-linux.tgz
|
|
|
|
for COMP in ${COMPONENTS}
|
|
do
|
|
echo "yes" | android-sdk-linux/tools/android update sdk -u -a -t ${COMP}
|
|
done |