-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
30 lines (27 loc) · 957 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
language: android
jdk:
- oraclejdk8
android:
components:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.0
- android-25
- extra-google-m2repository
- extra-android-m2repository
- extra-android-support
- extra-google-google_play_services
- addon-google_apis-google-25
- sys-img-armeabi-v7a-android-21
before_script:
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell settings put global window_animation_scale 0 &
- adb shell settings put global transition_animation_scale 0 &
- adb shell settings put global animator_duration_scale 0 &
- adb shell input keyevent 82 &
script:
- ./gradlew checkstyle build connectedCheck -Pcom.android.build.threadPoolSize=1 -Dorg.gradle.parallel=false -Dorg.gradle.jvmargs="-Xms512m -Xmx512m" -Dorg.gradle.daemon=false