File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : java
2
+ jdk : oraclejdk7
3
+ env :
4
+ matrix :
5
+ - ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
6
+
7
+ before_install :
8
+ # Install base Android SDK
9
+ - sudo apt-get update -qq
10
+ - 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
13
+ - export ANDROID_HOME=$PWD/android-sdk-linux
14
+ - export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
15
+
16
+ # 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
20
+ - export PATH=$GRADLE_HOME/bin:$PATH
21
+
22
+ # Install required components
23
+ # For a full list, run `android list sdk -a --extended`
24
+ # Note that sysimg-19 downloads only ARM, because only the first license query is accepted.
25
+ - 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
29
+ - echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
30
+ - echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
31
+
32
+ install :
33
+ - ./gradlew assemble
You can’t perform that action at this time.
0 commit comments