summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 41d9abf49240859dc35fb3bc6e17d81385d3e0ad (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.3
    - 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"