[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:
parent
84bd7b3e34
commit
29bd949743
|
@ -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
|
||||
|
|
|
@ -149,6 +149,18 @@ android {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
bundle {
|
||||
language {
|
||||
enableSplit = false
|
||||
}
|
||||
density {
|
||||
enableSplit = true
|
||||
}
|
||||
abi {
|
||||
enableSplit = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildscript {
|
||||
|
|
Loading…
Reference in New Issue