Skip to content

Instantly share code, notes, and snippets.

@trinnguyen
Last active October 19, 2018 14:58
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save trinnguyen/c85b9cc8ea170c2e5d422ab49d8273d9 to your computer and use it in GitHub Desktop.
Save trinnguyen/c85b9cc8ea170c2e5d422ab49d8273d9 to your computer and use it in GitHub Desktop.
CircleCI 2.0 Android config with Keystore Signing
version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-25-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- run:
name: export KEYSTORE path
command: echo 'export KEYSTORE=$(pwd)/signing.jks' >> $BASH_ENV
- run:
name: Download keystore signing
command: bash ./misc/download_keystore.sh
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Build assembleRelease
command: ./gradlew assembleRelease
- store_artifacts:
path: app/build/outputs/apk
destination: apk
- run:
name: Run Tests
command: ./gradlew lint test
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
@AndyChordiya
Copy link

Can your share your download_keystore.sh file. I am stuck somewhere in the code

@rakeshgirase
Copy link

Copied from https://stackoverflow.com/questions/36129396/circle-ci-how-to-enter-keystore-information-to-use-a-custom-keystore-instead-of

if [[ ${KEYSTORE_DOWNLOAD_URL} ]] then
        curl -L -o KEYSTORE_FILE_NAME ${KEYSTORE_DOWNLOAD_URL} else
        echo "No keystore Environment variable found"
fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment