mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
dc9700e268
This reverts commit 41fc51a2b7
.
14 lines
420 B
YAML
14 lines
420 B
YAML
language: android
|
|
env:
|
|
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:
|
|
- bash ./wait_for_emulator
|
|
- adb shell input keyevent 82 &
|
|
|
|
script: "bash gradlew connectedAndroidTestTestConfigDebug" |