Created
June 2, 2016 16:05
-
-
Save donnfelker/8181c85494cfd6f5b5a874dd126c985a to your computer and use it in GitHub Desktop.
Updated circle.yml file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Build configuration for Circle CI | |
# | |
# See this thread for speeding up and caching directories: https://discuss.circleci.com/t/installing-android-build-tools-23-0-2/924 | |
# | |
general: | |
artifacts: | |
- /home/ubuntu/AndroidCI/app/build/outputs/apk/ | |
machine: | |
environment: | |
ANDROID_HOME: /usr/local/android-sdk-linux | |
dependencies: | |
pre: | |
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,extra-google-m2repository,extra-google-google_play_services,extra-android-support,android-23 | |
- echo y | android update sdk --no-ui --all --filter build-tools-23.0.3 | |
cache_directories: | |
- /usr/local/android-sdk-linux/tools | |
- /usr/local/android-sdk-linux/build-tools/23.0.3 | |
test: | |
override: | |
- ./gradlew assemble | |
- cp -r app/build/outputs $CIRCLE_ARTIFACTS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey I m getting this Error Below: I m using buildToolsVersion 25.0.2 Android 25
FAILURE: Build failed with an exception.
A problem occurred configuring project ':app'.
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 1 mins 13.164 secs
export TERM="dumb"
if [ -e ./gradlew ]; then ./gradlew dependencies;else gradle dependencies;fi
returned exit code 1
Action failed: gradle dependencies