25 lines
433 B
YAML
25 lines
433 B
YAML
# https://docs.travis-ci.com/user/languages/android/
|
|
|
|
language: android
|
|
|
|
# so, out of blue travis requires this now (without it build would not even execute, immediate failure when downloading jdk)
|
|
dist: trusty
|
|
jdk: openjdk8
|
|
sudo: false
|
|
|
|
android:
|
|
components:
|
|
- tools
|
|
- platform-tools
|
|
- tools
|
|
|
|
- build-tools-28.0.3
|
|
- android-28
|
|
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2 |