mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
Fixes for ios build scripts
This commit is contained in:
parent
ccc3c4781f
commit
c7ce3dbd5c
2 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
MONERO_COM="monero.com"
|
MONERO_COM="monero.com"
|
||||||
CAKEWALLET="cakewallet"
|
CAKEWALLET="cakewallet"
|
||||||
DIR=$(dirname "$0")
|
DIR=`pwd`
|
||||||
|
|
||||||
if [ -z "$APP_IOS_TYPE" ]; then
|
if [ -z "$APP_IOS_TYPE" ]; then
|
||||||
echo "Please set APP_IOS_TYPE"
|
echo "Please set APP_IOS_TYPE"
|
||||||
|
@ -14,7 +14,6 @@ cd ../.. # go to root
|
||||||
/usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier ${APP_IOS_BUNDLE_ID}" ./ios/Runner/Info.plist
|
/usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier ${APP_IOS_BUNDLE_ID}" ./ios/Runner/Info.plist
|
||||||
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${APP_IOS_VERSION}" ./ios/Runner/Info.plist
|
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${APP_IOS_VERSION}" ./ios/Runner/Info.plist
|
||||||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion ${APP_IOS_BUILD_NUMBER}" ./ios/Runner/Info.plist
|
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion ${APP_IOS_BUILD_NUMBER}" ./ios/Runner/Info.plist
|
||||||
cd $DIR
|
|
||||||
CONFIG_ARGS=""
|
CONFIG_ARGS=""
|
||||||
|
|
||||||
case $APP_IOS_TYPE in
|
case $APP_IOS_TYPE in
|
||||||
|
@ -27,3 +26,5 @@ case $APP_IOS_TYPE in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
flutter packages pub run tool/configure.dart $CONFIG_ARGS
|
flutter packages pub run tool/configure.dart $CONFIG_ARGS
|
||||||
|
cd $DIR
|
||||||
|
$DIR/app_icon.sh
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
scripts/ios/app_env.sh#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
APP_IOS_NAME=""
|
APP_IOS_NAME=""
|
||||||
APP_IOS_VERSION=""
|
APP_IOS_VERSION=""
|
||||||
|
|
Loading…
Reference in a new issue