We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced93a4 commit 73703b3Copy full SHA for 73703b3
.travis.yml
@@ -0,0 +1,31 @@
1
+branches:
2
+ only:
3
+ - master
4
+
5
+language: android
6
+sudo: false
7
8
+android:
9
+ components:
10
+ - build-tools-21.1.1
11
12
+ - android-22
13
14
+ - extra-android-support
15
+ - extra-android-m2repository
16
17
+ - sys-img-armeabi-v7a-android-22
18
19
+before_script:
20
+ - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
21
+ - emulator -avd test -no-skin -no-audio -no-window &
22
+ - android-wait-for-emulator
23
+ - adb shell input keyevent 82 &
24
25
+script:
26
+ - ./gradlew clean connectedCheck --info
27
28
+cache:
29
+ directories:
30
+ - $HOME/.gradle
31
+ - $HOME/.m2/repository
0 commit comments