You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
331 B
7 lines
331 B
#!/bin/sh
|
|
|
|
# Install desired parts of the Android SDK:
|
|
test -f $HOME/.termuxrc && . $HOME/.termuxrc
|
|
: ${ANDROID_HOME:="${HOME}/lib/android-sdk"}
|
|
echo y | $ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "build-tools-23.0.3"
|
|
echo y | $ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "android-23"
|
|
|