I'm trying to use CircleCi with my Android project, I added a circle.yml file, but every time the build fails
There was a problem setting up the ': app' project. could not find Build Tools 23.0.1 version
the following is my circle.yml file
# # Build configuration for Circle CI # general: artifacts: - /home/ubuntu/ES-NRP-Android-V3/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" - echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1" override: - echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-23.0.1,android-23,extra-google-m2repository,extra-google-google_play_services,extra-android-support - ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies test: override: - (./gradlew assemble): timeout: 360
I am targeting SDK version 23 and build tools 23.0.2
source share