summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e7e35caac607f6445eaaabad2b2bcc3e34aae865 (about) (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
language: android

jdk:
  - openjdk8

android:
  components:
    - tools
    - build-tools-28.0.2
    - android-28
    - extra-google-m2repository
    - extra-android-m2repository
  licenses:
    - ".+"

script:
  - "./gradlew clean build test lintDebug -Dpre-dex=false"

notifications:
  email: false

sudo: false

cache:
  directories:
    - "$HOME/.m2"
    - "$HOME/.gradle"
    - "$ANDROID_HOME"