Guest User

Untitled

a guest
Mar 21st, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. sudo: false
  2. language: android
  3. jdk: oraclejdk8
  4. android:
  5. components:
  6. - tools
  7. - platform-tools
  8. - tools
  9. - build-tools-27.0.3
  10. - android-25
  11. - sys-img-arm64-v8a-android-25
  12.  
  13.  
  14. before_install:
  15. - chmod +x gradlew
  16.  
  17. before_script:
  18. - echo no | android create avd --force -n test --target android-25 --abi default/arm64-v8a
  19. - emulator -avd test -no-audio -no-window &
  20. - android-wait-for-emulator
  21. - adb shell input keyevent 82 &
  22.  
  23. $ echo no | android create avd --force -n test --target android-25 --abi default/arm64-v8a
  24. Valid ABIs: no ABIs.
  25. Error: Invalid --abi arm64-v8a for the selected target.
  26. The command "echo no | android create avd --force -n test --target android-25 --abi default/arm64-v8a" failed and exited with 1 during .
Add Comment
Please, Sign In to add comment