Guest User

Untitled

a guest
Jan 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #
  2. # Build configuration for Circle CI
  3. #
  4.  
  5. general:
  6. artifacts:
  7. - /home/ubuntu/your-app-name/app/build/outputs/apk/
  8.  
  9. machine:
  10. environment:
  11. ANDROID_HOME: /usr/local/android-sdk-linux
  12.  
  13. dependencies:
  14. override:
  15. - echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-19.1.0,android-19,extra-google-m2repository,extra-google-google_play_services,extra-android-support
  16. - ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies
  17.  
  18. test:
  19. override:
  20. - (./gradlew assemble):
  21. timeout: 360
Add Comment
Please, Sign In to add comment