android:
docker:
- image: circleci/android:api-28-node8-alpha
working_directory: ~/repo/android
environment:
JAVA_OPTS: -Xmx1536m
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-Xmx1536m -XX:+HeapDumpOnOutOfMemoryError"'
steps:
- checkout
- run: ls; cd android
- run:
name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
command: sudo chmod +x ./gradlew
- run:
name: Download Dependencies
command: sudo ./gradlew androidDependencies
- run:
name: Initial build
command: sudo ./gradlew clean assembleRelease --no-daemon --stacktrace
- store_artifacts:
path: android/app/build/outputs/apk/
destination: apks/
Вот мой файл круга ci config.yml, не в состоянии построить android, сбой с ошибкой: chmod: не удается получить доступ к.. / Gradlew: нет такого файла или каталога.