From c5a999988f123bf2591555b1044cbefc429b36a9 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sun, 15 Nov 2020 00:27:25 +0100 Subject: [PATCH] Revert "CircleCI Android: Use git-crypt" This reverts commit 27349bfbe3e9a8fcbc4bc832984960db8432704e. Doesn't seem to work --- .circleci/config.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9284532c..3203baa3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,8 +20,14 @@ jobs: name: Analyze command: flutter analyze - run: - name: Unlock Secrets - command: ./scripts/decrypt_secrets.sh + name: Decode Android key store + command: echo "$KEYSTORE" | base64 -di > android/app/keystore.jks + - run: + name: Create Google Play key + command: echo "$GOOGLE_PLAY_KEY" | base64 -di > android/google-play-api-key.json + - run: + name: Create Android Key file + command: echo "$ANDROID_KEY_FILE" | base64 -di > android/key.properties - run: name: Build command: ./scripts/build.sh