Nicholas Chum | e13559a | 2016-03-22 12:02:10 -0400 | [diff] [blame] | 1 | language: android |
| 2 | android: |
| 3 | components: |
| 4 | - tools |
| 5 | - platform-tools |
| 6 | - build-tools-22.0.1 |
Nicholas Chum | 55e468b | 2016-03-23 00:52:56 -0400 | [diff] [blame] | 7 | - android-22 |
Nicholas Chum | e13559a | 2016-03-22 12:02:10 -0400 | [diff] [blame] | 8 | - extra-android-support |
| 9 | - extra-android-m2repository |
Nicholas Chum | 021b3a0 | 2016-03-23 00:53:01 -0400 | [diff] [blame] | 10 | - 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 |
| 19 | env: |
| 20 | global: |
| 21 | # install timeout in minutes (2 minutes by default) |
| 22 | - ADB_INSTALL_TIMEOUT=8 |
| 23 | |
| 24 | # Emulator Management: Create, Start and Wait |
| 25 | before_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 | |
| 31 | script: |
| 32 | - android list target |
| 33 | - ./gradlew connectedAndroidTest |