aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorSam Judd <judds@google.com>2014-06-25 17:40:38 -0700
committerSam Judd <judds@google.com>2014-06-25 19:07:30 -0700
commit5166e0e9cce71ae4d515355ea2c3ac68ec830157 (patch)
treeacb96955651015f9847788076c456a67720ef3cf /library
parentcf1e05bf226ce4e7a510a5f7cac0661b9b2e90e9 (diff)
downloadglide-5166e0e9cce71ae4d515355ea2c3ac68ec830157.tar.gz
Add travis ci yml file and move install_deps
Diffstat (limited to 'library')
-rwxr-xr-xlibrary/install_dependencies/install-android-deps.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/library/install_dependencies/install-android-deps.sh b/library/install_dependencies/install-android-deps.sh
deleted file mode 100755
index 52e9a17b..00000000
--- a/library/install_dependencies/install-android-deps.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-# This script installs the necessary Android dependencies to compile Glide and run
-# the test suite.
-#
-# Pre-requisites:
-# Using the android sdk tool, under Android 4.4.2 (API 19), install:
-# SDK Platform
-# Glass Development Kit Preview
-# Also using the android sdk tool, under Android 4.4.0 (API 14), install:
-# SDK Platform
-
-git clone https://github.com/mosabua/maven-android-sdk-deployer.git
-cd maven-android-sdk-deployer
-mvn clean install -N && cd platforms && mvn clean install -N && cd android-19 && mvn clean install || {
- echo 'Failed to install 4.4 SDK, install relevant packages in android SDK first';
- exit 1;
-}
-cd ../..
-mvn clean install -N && cd platforms && mvn clean install -N && cd android-14 && mvn clean install || {
- echo 'Failed to install 4.0 SDK, install relevant packages in android SDK first';
- exit 1;
-}
-cd ../..
-mvn clean install -N && cd extras && mvn clean install -N && cd compatibility-v4 && mvn clean install || {
- echo 'Failed to install android-support-v4, install support library in android SDK first';
- exit 1;
-}
-cd ../../..
-rm -rf maven-android-sdk-deployer