[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 echo -e "apiSecret=$FABRIC_SECRET" >> ./app/fabric.properties
fi fi
- run: # - run:
name: Install Android Depedencies # name: Install Android Depedencies
command: | # command: |
cd android # cd android
./gradlew androidDependencies # ./gradlew androidDependencies
- run: - run:
name: Build Android App name: Build Android App
command: | command: |
cd android cd android
if [[ $KEYSTORE ]]; then if [[ $KEYSTORE ]]; then
./gradlew assembleRelease ./gradlew bundleRelease
else else
./gradlew assembleDebug ./gradlew assembleDebug
fi fi

View File

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