[CHORE] Android app bundle (#915)

* [CHORE] Upgrade Mac CI image to 10.2.1

* [CHORE] Android App Bundle

* Fix CI
This commit is contained in:
Diego Mello 2019-05-23 15:44:33 -03:00 committed by GitHub
parent 84bd7b3e34
commit 29bd949743
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 6 deletions

View File

@ -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

View File

@ -149,6 +149,18 @@ android {
}
}
}
bundle {
language {
enableSplit = false
}
density {
enableSplit = true
}
abi {
enableSplit = true
}
}
}
buildscript {