stack_wallet/scripts/build_app.sh
2024-06-05 11:35:51 -06:00

122 lines
3.6 KiB
Bash
Executable file

#!/usr/bin/env bash
set -e
source ./env.sh
APP_PLATFORMS=("android" "ios" "macos" "linux" "windows")
APP_NAMED_IDS=("stack_wallet" "stack_duo" "campfire")
# Function to display usage.
usage() {
echo "Usage: $0 -v <version> -b <build_number> -p <platform> -a <app>"
exit 1
}
confirmDisclaimer() {
while true; do
# shellcheck disable=SC2162
read -p "Please confirm you understand that when using certain values for <version> and <build_number> there is a chance that the resulting app WILL DELETE CRITICAL WALLET DATA. Are you sure you want to continue? (yes/no): " response
case $response in
[Yy][Ee][Ss] ) echo "Continuing..."; break;;
[Nn][Oo] ) exit 0;;
* ) echo "Invalid response";;
esac
done
}
# required args
unset -v APP_VERSION_STRING
unset -v APP_BUILD_NUMBER
unset -v APP_BUILD_PLATFORM
unset -v APP_NAMED_ID
# optional args (with defaults)
BUILD_CRYPTO_PLUGINS=0
# Parse command-line arguments.
while getopts "v:b:p:a:i" opt; do
case "${opt}" in
v) APP_VERSION_STRING="$OPTARG" ;;
b) APP_BUILD_NUMBER="$OPTARG" ;;
p) APP_BUILD_PLATFORM="$OPTARG" ;;
a) APP_NAMED_ID="$OPTARG" ;;
i) BUILD_CRYPTO_PLUGINS=1 ;;
*) usage ;;
esac
done
if [ -z "$APP_VERSION_STRING" ]; then
echo "Missing -v option"
usage
fi
if [ -z "$APP_BUILD_NUMBER" ]; then
echo "Missing -b option"
usage
fi
if [ -z "$APP_BUILD_PLATFORM" ]; then
echo "Missing -p option"
usage
fi
if [ -z "$APP_NAMED_ID" ]; then
echo "Missing -a option"
usage
fi
confirmDisclaimer
set -x
source "${APP_PROJECT_ROOT_DIR}/scripts/app_config/templates/configure_template_files.sh"
# checks for the correct platform dir and pushes it for later
if printf '%s\0' "${APP_PLATFORMS[@]}" | grep -Fxqz -- "${APP_BUILD_PLATFORM}"; then
pushd "${APP_PROJECT_ROOT_DIR}/scripts/${APP_BUILD_PLATFORM}"
else
echo "Invalid platform: ${APP_BUILD_PLATFORM}"
usage
fi
PLAY_STORE_ICON_FILE="${APP_PROJECT_ROOT_DIR}/android/app/src/main/app_icon-playstore.png"
if [ -f "${PLAY_STORE_ICON_FILE}" ]; then
rm "${PLAY_STORE_ICON_FILE}"
fi
cp -rp "${APP_PROJECT_ROOT_DIR}/asset_sources/other/playstore_icon/${APP_NAMED_ID}/app_icon-playstore.png" "${PLAY_STORE_ICON_FILE}"
# apply config project wide change changes
if printf '%s\0' "${APP_NAMED_IDS[@]}" | grep -Fxqz -- "${APP_NAMED_ID}"; then
if cmp -s "${ACTUAL_PUBSPEC}" "${T_PUBSPEC}"; then
rm "${ACTUAL_PUBSPEC}"
cp "${T_PUBSPEC}" "${ACTUAL_PUBSPEC}"
fi
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/update_version.sh" -v "${APP_VERSION_STRING}" -b "${APP_BUILD_NUMBER}"
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/link_assets.sh" "${APP_NAMED_ID}" "${APP_BUILD_PLATFORM}"
# shellcheck disable=SC1090
source "${APP_PROJECT_ROOT_DIR}/scripts/app_config/configure_${APP_NAMED_ID}.sh" "${APP_BUILD_PLATFORM}"
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/platforms/${APP_BUILD_PLATFORM}/platform_config.sh"
if [[ "$APP_BUILD_PLATFORM" != "linux" ]]; then
# run icon and image generators after project config has completed for non linux
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/asset_generators.sh" "${APP_BUILD_PLATFORM}"
fi
else
echo "Invalid app id: ${APP_NAMED_ID}"
exit 1
fi
if [ "$BUILD_CRYPTO_PLUGINS" -eq 0 ]; then
if [[ "$APP_NAMED_ID" = "stack_wallet" ]]; then
./build_all.sh
elif [[ "$APP_NAMED_ID" = "stack_duo" ]]; then
./build_all_duo.sh
elif [[ "$APP_NAMED_ID" = "campfire" ]]; then
./build_all_campfire.sh
else
echo "Invalid app id: ${APP_NAMED_ID}"
exit 1
fi
fi
popd