3c323c69ae
- Update to build on ubuntu 16.04. - Docker: Set FORCE_UNSAFE_CONFIGURE=1. Fixes #275. - Docker: Various fixes. - Neovim: No longer require lua. - Some minor package updates.
8 lines
331 B
Bash
Executable File
8 lines
331 B
Bash
Executable File
#!/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"
|