1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43:22 +00:00
comunicmobile/build_all_comunic_releases.sh

14 lines
518 B
Bash
Raw Permalink Normal View History

2021-04-30 15:39:32 +00:00
#!/bin/sh
DEST="/home/pierre/Desktop"
make stable_release_split_per_abi && \
mv build/app/outputs/flutter-apk/app-armeabi-v7a-stable-release.apk "$DEST" && \
mv build/app/outputs/flutter-apk/app-arm64-v8a-stable-release.apk "$DEST" && \
mv build/app/outputs/flutter-apk/app-x86_64-stable-release.apk "$DEST" && \
2021-12-28 18:03:37 +00:00
mv build/app/outputs/mapping/stableRelease/mapping.txt "$DEST" && \
2021-04-30 15:39:32 +00:00
make stable_release && \
mv build/app/outputs/flutter-apk/app-stable-release.apk "$DEST"
echo "Done. Artifacts copied to $DEST"