2014-07-20 20:45:29 +00:00
|
|
|
language: android
|
|
|
|
android:
|
|
|
|
components:
|
|
|
|
- build-tools-19.1
|
|
|
|
- android-19
|
|
|
|
- sysimg-19
|
|
|
|
- extra-android-support
|
2014-07-20 20:57:13 +00:00
|
|
|
- extra-google-google_play_services
|
|
|
|
- extra-google-m2repository
|
|
|
|
- extra-android-m2repository
|
2014-07-13 17:09:27 +00:00
|
|
|
|
|
|
|
jdk: oraclejdk7
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
2014-07-21 20:05:52 +00:00
|
|
|
- ANDROID_SDK_VERSION="r23.0.2"
|
2014-08-12 19:45:07 +00:00
|
|
|
matrix:
|
|
|
|
- ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
|
|
|
|
- emulator -avd test -no-skin -no-audio -no-window &
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- wget https://raw.githubusercontent.com/andrewhr/rxjava-android-example/master/ci/wait_for_emulator
|
|
|
|
- chmod +x wait_for_emulator
|
|
|
|
- ./wait_for_emulator
|
|
|
|
- adb shell input keyevent 82 &
|
|
|
|
|
2014-07-13 17:09:27 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: true
|
|
|
|
|
|
|
|
|