Last active
October 27, 2016 08:39
-
-
Save talenguyen/fb43bd941fea568e63c33939a07c9e28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fix the CircleCI path | |
function install() { | |
TARGET="$1" | |
if [ ! -e $TARGET ]; then | |
echo y | android update sdk --no-ui --all --filter $2 | |
else | |
echo "$TARGET has installed" | |
fi | |
} | |
function installNode(){ | |
TARGET="$1" | |
if [ ! -e $TARGET ]; then | |
cd react && npm install && cd .. | |
else | |
echo "$TARGET has installed" | |
fi | |
} | |
function getNode(){ | |
installNode react/node_modules | |
} | |
function getAndroidSDK() { | |
export PATH="$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:$PATH" | |
install $ANDROID_HOME/platforms/android-24 android-24 && | |
install $ANDROID_HOME/build-tools/24.0.2 build-tools-24.0.2 && | |
install $ANDROID_HOME/extras/android/m2repository/com/android/support/appcompat-v7/25.0.0 extra-android-m2repository && | |
install $ANDROID_HOME/extras/android/m2repository/com/android/support/support-v4/25.0.0 extra-android-support && | |
install $ANDROID_HOME/extras/google/m2repository/com/google/android/gms/play-services/9.6.1 extra-google-m2repository | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment