-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (48 loc) · 1.77 KB
/
.travis.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
language: android
jdk:
- oraclejdk8
before_install:
- yes | sdkmanager "platforms;android-27"
global:
- QEMU_AUDIO_DRV=none
- ADB_INSTALL_TIMEOUT=8 # minutes (2 minutes by default)
android:
components:
- tools # to get the new `repository-11.xml`
- tools # to install Android SDK tools 25+, latest, cannot get more granular control than this
# See https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943 for more
# details.
- platform-tools #latest
- build-tools-27.0.2
- android-21
- android-27
- extra-android-m2repository
- extra-android-support
- sys-img-armeabi-v7a-google_apis-21
- sys-img-armeabi-v7a-addon-google_apis-google-21
licenses:
- 'android-sdk-license-.+'
# to accept ConstraintLayout licences (see https://github.com/travis-ci/travis-ci/issues/6617)
before_install:
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n504667f4c0de7af1a06de9f4b1727b84351f2910" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
branches:
except:
- gh-pages
sudo: false
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.android/build-cache
# Emulator Management: Create, Start and Wait
before_script:
- android list targets
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a --tag google_apis
- emulator -avd test -engine classic -no-window -camera-back none -camera-front none -verbose -qemu &
- android-wait-for-emulator
- adb shell input keyevent 82 &