aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e0aea7753372b42663e91cff98fa3ceb1873f4b4 (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
29
30
31
32
language: android

jdk:
  - openjdk8

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

before_install:
  - mkdir -p "$ANDROID_HOME/licenses/"
  - curl "https://download.msfjarvis.website/.viscerion/sdk-licenses.tar.xz" | tar -C "$ANDROID_HOME/licenses/" --strip-components=1 -xvf -

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

notifications:
  email: false

sudo: false

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