We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4da07aa commit 9f5cd92Copy full SHA for 9f5cd92
.travis.yml
@@ -0,0 +1,18 @@
1
+language: java
2
+
3
+branches:
4
+ excludes:
5
+ - gh-pages
6
7
+notifications:
8
+ email: false
9
10
+before_install:
11
+ - wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
12
+ - tar -zxf android-sdk_r21.0.1-linux.tgz
13
+ - export ANDROID_HOME=~/builds/square/spoon/android-sdk-linux
14
+ - export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
15
+ - TOOLS=$(android list sdk --no-ui | grep "Android SDK Platform-tools" | cut -d"-" -f1)
16
+ - android update sdk --filter "$TOOLS" --no-ui --force
17
+ - SDK=$(android list sdk --no-ui | grep ", API 16," | cut -d"-" -f1)
18
+ - android update sdk --filter "$SDK" --no-ui --force
0 commit comments