Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. language: android
  2. jdk: oraclejdk8
  3. env:
  4. matrix:
  5. - ANDROID_TARGET=android-22 ANDROID_ABI=armeabi-v7a
  6. android:
  7. components:
  8. - build-tools-21.1.2
  9. - android-22
  10. - sys-img-armeabi-v7a-android-22
  11. - extra
  12.  
  13. # Emulator Management: Create, Start and Wait
  14. before_script:
  15. - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
  16. - emulator -avd test -no-skin -no-audio -no-window &
  17. - android-wait-for-emulator
  18. - adb shell input keyevent 82 &
  19.  
  20. script: cd MVVM-Example && ./gradlew app:connectAndroidTest -PdisablePreDex
  21.  
  22. ./gradlew app:connectAndroidTest --info
  23.  
  24. ./gradlew app:connectAndroidTest --debug
  25.  
  26. The log length has exceeded the limit of 4 Megabytes (this usually means that test suite is raising the same exception over and over).
  27. The build has been terminated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement