termux-packages/install-sdk.sh

9 lines
313 B
Bash
Raw Normal View History

2015-06-13 01:03:31 +02:00
#!/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"
2016-05-03 11:50:38 +02:00
$ANDROID_HOME/tools/android update sdk --no-ui --all --no-https -t "android-23"