blob: 86aee57251b5539a13969c5fdafd53246c294dfe [file] [log] [blame]
Nicholas Chume13559a2016-03-22 12:02:10 -04001language: android
2android:
3 components:
4 - tools
5 - platform-tools
6 - build-tools-22.0.1
Nicholas Chum55e468b2016-03-23 00:52:56 -04007 - android-22
Nicholas Chume13559a2016-03-22 12:02:10 -04008 - extra-android-support
9 - extra-android-m2repository
Nicholas Chum021b3a02016-03-23 00:53:01 -040010 - extra-google-m2repository
11
12 # Additional components
13 #- extra-google-google_play_services
14 #- addon-google_apis-google-19
15
16 # Specify at least one system image, if you need to run emulator(s) during your tests
17 #- sys-img-armeabi-v7a-android-19
18 #- sys-img-x86-android-17
19env:
20 global:
21 # install timeout in minutes (2 minutes by default)
22 - ADB_INSTALL_TIMEOUT=8
23
24# Emulator Management: Create, Start and Wait
25before_script:
26 - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
27 - emulator -avd test -no-skin -no-audio -no-window &
28 - android-wait-for-emulator
29 - adb shell input keyevent 82 &
30
31script:
32 - android list target
33 - ./gradlew connectedAndroidTest