cake_wallet/scripts/ios/app_env.sh

61 lines
1.3 KiB
Bash
Raw Normal View History

2022-01-06 11:20:06 +00:00
#!/bin/sh
2022-01-04 14:57:19 +00:00
APP_IOS_NAME=""
APP_IOS_VERSION=""
APP_IOS_BUILD_VERSION=""
APP_IOS_BUNDLE_ID=""
MONERO_COM="monero.com"
CAKEWALLET="cakewallet"
2022-03-30 15:57:04 +00:00
HAVEN="haven"
2022-01-04 14:57:19 +00:00
2022-03-30 15:57:04 +00:00
TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
2022-01-04 14:57:19 +00:00
APP_IOS_TYPE=$1
MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.0.8"
MONERO_COM_BUILD_NUMBER=18
2022-01-04 14:57:19 +00:00
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
CAKEWALLET_NAME="Cake Wallet"
Ionia (#437) * Initial ionia service * Ionia manage card UI (#374) * design ui for cakepay * Add manage cards page ui * create auth ui for ionia * add authentication logic * implement user create card * Add ionia merchant sevic * Add anypay. Add purschase gift card. * display virtual card (#385) * display virtual card * fix formatting * Remove IoniaMerchantService from IoniaViewModel * Add hex and txKey for monero pending transaction. * Changed monero version and monero repo to cake tech. * Add anypay payment. Add filter by search for ionia, add get purchased items for ionia. * Fix for get transactions for hidden addresses for electrum wallet * Add ionia categories. * Add anypay commited info for payments. * Update UI with new fixes (#400) * Change ionia base url. Add exception throwing for error messaging for some of ionia calls. * CW-102 fix logic for ionia issues (#403) * refactor tips (#406) * refactor tips * refactor ionia tips implementation * Cw 115 implement gift cards list for ionia (#405) * Implement show purchased cards * fix padding * Fixes for getting of purchased gift cards. * Implement gift card details screen (#408) * Implement gift card details screen * Add redeem for ionia gift cards * Fix navigation after ionia opt redirection. * Fix update gift cards list. * Add payment status update for ionia. * Add usage instruction to gift card. * Add copy for ionia gift card info. * Change version for Cake Wallet ios. * Add localisation (#414) * Fixes for fiat amounts for ionia. * CW-128 marketplace screen text changes (#416) * Change text on marketplace * fix build issues * fix build * UI fixes for ionia. * UI fixes for ionia. (#421) * CW-129 ionia welcome screen text changes (#418) * update welcome text * Update localization * Cw 133 (#422) * UI fixes for ionia. * Fixes for display card item on gift cards screen. * Fix signup page (#419) * Changed tips for ionia. * Cw 132 (#425) * UI fixes for ionia. * Changed tips for ionia. * Cw 131 (#426) * UI fixes for ionia. * Changed tips for ionia. * Fixes for IoniaBuyGiftCardDetailPage screen. Renamed 'Manage Cards' to 'Gift Cards'. Hide discount badge label for 0 discount. * Change ionia heading font style (#427) * Fix for AddressResolver in di * Changed build number for Cake Wallet ios. * fix currency format for card details and routing for mark as redeemed (#431) * fix terms and condition overflow in ionia (#430) * fix terms and condition scroll * fix color issues * reuse * refactor widget * Remove IoniaTokenService * Change api for ionia to staging * Update versions for Cake Wallet for android and ios. * Fixes for instructions. Remove diplay error on payment status screen. * Change build versions for Cake Wallet * Add ionia sign in. * Update for discounts and statuses for ionia merch. * Fixes for qr/barcode on ionia gift card screen. * Fixed formatting for display ionia discounts. * Fix merchant.discount.toStringAsFixed issue * Add savingsPercentage to ionia merch discount. * Change build number for Cake Wallet ios and android. * Disable ionia for haven (#440) Co-authored-by: Godwin Asuquo <41484542+godilite@users.noreply.github.com>
2022-07-28 17:03:16 +00:00
CAKEWALLET_VERSION="4.4.4"
CAKEWALLET_BUILD_NUMBER=112
2022-01-04 14:57:19 +00:00
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
2022-03-30 15:57:04 +00:00
HAVEN_NAME="Haven"
HAVEN_VERSION="1.0.0"
HAVEN_BUILD_NUMBER=3
HAVEN_BUNDLE_ID="com.cakewallet.haven"
2022-01-04 14:57:19 +00:00
if ! [[ " ${TYPES[*]} " =~ " ${APP_IOS_TYPE} " ]]; then
echo "Wrong app type."
exit 1
fi
2022-01-04 18:57:46 +00:00
case $APP_IOS_TYPE in
2022-01-04 14:57:19 +00:00
$MONERO_COM)
APP_IOS_NAME=$MONERO_COM_NAME
APP_IOS_VERSION=$MONERO_COM_VERSION
APP_IOS_BUILD_NUMBER=$MONERO_COM_BUILD_NUMBER
APP_IOS_BUNDLE_ID=$MONERO_COM_BUNDLE_ID
;;
$CAKEWALLET)
APP_IOS_NAME=$CAKEWALLET_NAME
APP_IOS_VERSION=$CAKEWALLET_VERSION
APP_IOS_BUILD_NUMBER=$CAKEWALLET_BUILD_NUMBER
APP_IOS_BUNDLE_ID=$CAKEWALLET_BUNDLE_ID
;;
2022-03-30 15:57:04 +00:00
$HAVEN)
APP_IOS_NAME=$HAVEN_NAME
APP_IOS_VERSION=$HAVEN_VERSION
APP_IOS_BUILD_NUMBER=$HAVEN_BUILD_NUMBER
APP_IOS_BUNDLE_ID=$HAVEN_BUNDLE_ID
;;
2022-01-04 14:57:19 +00:00
esac
export APP_IOS_TYPE
export APP_IOS_NAME
export APP_IOS_VERSION
export APP_IOS_BUILD_NUMBER
export APP_IOS_BUNDLE_ID