From 29bd949743eba67640fd17e81fc05a6edaf67880 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Thu, 23 May 2019 15:44:33 -0300 Subject: [PATCH] [CHORE] Android app bundle (#915) * [CHORE] Upgrade Mac CI image to 10.2.1 * [CHORE] Android App Bundle * Fix CI --- .circleci/config.yml | 12 ++++++------ android/app/build.gradle | 12 ++++++++++++ 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5797da95c..e38f356e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -137,18 +137,18 @@ jobs: echo -e "apiSecret=$FABRIC_SECRET" >> ./app/fabric.properties fi - - run: - name: Install Android Depedencies - command: | - cd android - ./gradlew androidDependencies + # - run: + # name: Install Android Depedencies + # command: | + # cd android + # ./gradlew androidDependencies - run: name: Build Android App command: | cd android if [[ $KEYSTORE ]]; then - ./gradlew assembleRelease + ./gradlew bundleRelease else ./gradlew assembleDebug fi diff --git a/android/app/build.gradle b/android/app/build.gradle index 4dfdc08fd..c1df0c586 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -149,6 +149,18 @@ android { } } } + + bundle { + language { + enableSplit = false + } + density { + enableSplit = true + } + abi { + enableSplit = true + } + } } buildscript {