aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 1e7b8dbe0797ab0516704c14bd127f4b44c8d096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: android
jdk: openjdk7
sudo: false
env:
    global:
        - ANDROID_API_LEVEL=21
        - ANDROID_ABI=armeabi-v7a
        - ADB_INSTALL_TIMEOUT=8 # minutes (2 minutes by default)
android:
    components:
        - build-tools-22.0.1
        - build-tools-21.1.2
        - build-tools-21.1.1
        - build-tools-19.1.0
        - android-22
        - android-21
        - android-19
        - platform-tools
        - extra-android-support
        - extra-android-m2repository
    licenses:
        - 'android-sdk-preview-license-52d11cd2'
        - 'android-sdk-license-.+'
        - 'google-gdk-license-.+'

before_script:
    - echo no | android create avd --force -n test -t android-$ANDROID_API_LEVEL --abi $ANDROID_ABI
    - emulator -avd test -no-skin -no-audio -no-window &
    - ./tools/android-wait-for-emulator
    - adb shell input keyevent 82 &

script:
    - ./gradlew connectedAndroidTest
    - ./gradlew testDebug jacocoTestReport coveralls