Skip to content

Commit

Permalink
Maybe no-audio gives emulator16 a chance to boot correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
zyuiop committed Nov 16, 2018
1 parent 5fa0281 commit ef06c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,6 +1,6 @@
language: android
env:
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=16 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=16 VIEW_AVD_LOGS=1 EMU_OPTS="-noaudio"
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=18 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=19 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=24 VIEW_AVD_LOGS=1
Expand All @@ -27,7 +27,7 @@ before_script:
# Emulator Management: Create, Start and Wait
- android list target
- echo no | android create avd --force -n test -t android-$API --abi $ABI
- emulator -avd test -no-window -verbose -memory 1536 & # no-audio causes failures, so I removed it
- emulator -avd test -no-window -verbose -memory 1536 $EMU_OPTS & # no-audio causes failures, so I removed it
- android-wait-for-emulator
- adb shell input keyevent 82 &
# Disable transitions
Expand Down

0 comments on commit ef06c0e

Please sign in to comment.