Skip to content

Commit bc731fc

Browse files
committed
travis
1 parent 3530beb commit bc731fc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@ language: java
22
jdk: oraclejdk7
33
env:
44
matrix:
5-
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
5+
- ANDROID_TARGET=android-20 ANDROID_ABI=armeabi-v7a
66

77
before_install:
88
# Install base Android SDK
99
- sudo apt-get update -qq
1010
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch > /dev/null; fi
11-
- wget http://dl.google.com/android/android-sdk_r22.3-linux.tgz
12-
- tar xzf android-sdk_r22.3-linux.tgz
11+
- wget http://dl.google.com/android/android-sdk_r23-linux.tgz
12+
- tar xzf android-sdk_r23-linux.tgz
1313
- export ANDROID_HOME=$PWD/android-sdk-linux
1414
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
1515

1616
# Gradle
17-
- wget http://services.gradle.org/distributions/gradle-1.9-bin.zip
18-
- unzip gradle-1.9-bin.zip
19-
- export GRADLE_HOME=$PWD/gradle-1.9
17+
- wget http://services.gradle.org/distributions/gradle-1.12-bin.zip
18+
- unzip gradle-1.12-bin.zip
19+
- export GRADLE_HOME=$PWD/gradle-1.12
2020
- export PATH=$GRADLE_HOME/bin:$PATH
2121

2222
# Install required components
2323
# For a full list, run `android list sdk -a --extended`
2424
# Note that sysimg-19 downloads only ARM, because only the first license query is accepted.
2525
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null
26-
- echo yes | android update sdk --all --filter build-tools-19.0.3 --no-ui --force > /dev/null
27-
- echo yes | android update sdk --filter android-19 --no-ui --force > /dev/null
28-
- echo yes | android update sdk --filter sysimg-19 --no-ui --force > /dev/null
26+
- echo yes | android update sdk --all --filter build-tools-20.0.0 --no-ui --force > /dev/null
27+
- echo yes | android update sdk --filter android-20 --no-ui --force > /dev/null
28+
- echo yes | android update sdk --filter sys-img-x86-android-19 --no-ui --force > /dev/null
2929
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
3030
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
3131

0 commit comments

Comments
 (0)