From 8f64e65849ee018d45ce0519d17fb3d30523783d Mon Sep 17 00:00:00 2001 From: Exordian Date: Wed, 5 Feb 2020 17:44:31 +0100 Subject: [PATCH] [FIX] Remove duplicate jetify step (#1628) minor: also remove 'cd' calls Co-authored-by: Diego Mello --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d612de47..c6da1610a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -148,8 +148,6 @@ jobs: - run: name: Configure Gradle command: | - cd android - echo -e "" > ./gradle.properties # echo -e "android.enableAapt2=false" >> ./gradle.properties echo -e "android.useAndroidX=true" >> ./gradle.properties @@ -165,6 +163,7 @@ jobs: echo -e "VERSIONCODE=$CIRCLE_BUILD_NUM" >> ./gradle.properties echo -e "BugsnagAPIKey=$BUGSNAG_KEY" >> ./gradle.properties + working_directory: android - run: name: Set Google Services @@ -194,8 +193,6 @@ jobs: - run: name: Build Android App command: | - npx jetify - cd android if [[ $KEYSTORE ]]; then # TODO: enable app bundle again ./gradlew assembleRelease @@ -206,6 +203,7 @@ jobs: mkdir -p /tmp/build mv app/build/outputs /tmp/build/ + working_directory: android - store_artifacts: path: /tmp/build/outputs