23 lines
546 B
YAML
23 lines
546 B
YAML
language: android
|
|
android:
|
|
components:
|
|
- build-tools-19.0.3
|
|
- extra-android-support
|
|
env:
|
|
matrix:
|
|
- ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
|
|
|
|
before_install:
|
|
# Create and start emulator
|
|
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
|
|
- emulator -avd test -no-skin -no-audio -no-window &
|
|
|
|
install:
|
|
- ./gradlew :lib:build
|
|
|
|
before_script:
|
|
- adb wait-for-device
|
|
- adb shell input keyevent 82 &
|
|
|
|
script:
|
|
- ./gradlew :lib:connectedAndroidTest |