| language: android |
| android: |
| components: |
| - tools |
| - platform-tools |
| - build-tools-23.0.3 |
| - android-23 |
| - extra-android-support |
| - extra-android-m2repository |
| - extra-google-m2repository |
| |
| env: |
| global: |
| # install timeout in minutes (2 minutes by default) |
| - ADB_INSTALL_TIMEOUT=8 |
| |
| # Emulator Management: Create, Start and Wait |
| 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 input keyevent 82 & |
| |
| script: |
| - android list target |
| - ./gradlew connectedAndroidTest |