-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
40 lines (33 loc) · 1.02 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
language: android
jdk: openjdk7
sudo: false
env:
matrix:
# disable the Android 5.1 test as it's not fully supported by travis.ci.
# - ANDROID_TARGET=android-22 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-16 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-15 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-10 ANDROID_ABI=armeabi
android:
components:
- build-tools-22.0.1
# targets
- android-22
# extra
- extra-android-support
- extra-android-m2repository
licenses:
- '.+'
notifications:
email: false
branches:
except:
- gh-pages
before_script:
- android list target
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &