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.
8 lines
313 B
8 lines
313 B
#!/bin/sh
|
|
|
|
# Read settings from .termuxrc if existing
|
|
test -f $HOME/.termuxrc && . $HOME/.termuxrc
|
|
: ${ANDROID_HOME:="${HOME}/lib/android-sdk"}
|
|
|
|
$ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "build-tools-23.0.2"
|
|
$ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "android-21"
|
|
|