forked from simpligility/android-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (30 loc) · 826 Bytes
/
.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
sudo: false
cache:
directories:
- $HOME/.m2
jdk: oraclejdk8
language: android
android:
components:
- tools
- tools # https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943
- platform-tools
- android-19
- android-22
- android-23
- android-25
- android-28
- build-tools-24.0.1
- build-tools-24.0.3
- build-tools-25.0.3
- build-tools-28.0.3
- sys-img-armeabi-v7a-android-22
- extra-android-m2repository
before_script:
# Create and start emulator
#- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
#- emulator -avd test -no-skin -no-audio -no-window &
# Make sure the emulator is running.
#- android-wait-for-emulator
#- adb shell input keyevent 82 &
script: mvn clean install -Dandroid.device=test -B -U