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

Add single Comunic build script

This commit is contained in:
Pierre HUBERT 2021-04-30 17:39:32 +02:00
parent 3ed56eaa3d
commit f018e78047

13
build_all_comunic_releases.sh Executable file
View File

@ -0,0 +1,13 @@
#!/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" && \
mv build/app/outputs/mapping/stable/release/mapping.txt "$DEST" && \
make stable_release && \
mv build/app/outputs/flutter-apk/app-stable-release.apk "$DEST"
echo "Done. Artifacts copied to $DEST"