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