From 104f04b7bed03697e49e163770c048914fda342a Mon Sep 17 00:00:00 2001 From: M Date: Tue, 11 Jan 2022 18:58:04 +0200 Subject: [PATCH] Add base file for generation Info.plist file for iOS project --- ios/Runner/{Info.plist => InfoBase.plist} | 0 scripts/ios/app_config.sh | 1 + 2 files changed, 1 insertion(+) rename ios/Runner/{Info.plist => InfoBase.plist} (100%) diff --git a/ios/Runner/Info.plist b/ios/Runner/InfoBase.plist similarity index 100% rename from ios/Runner/Info.plist rename to ios/Runner/InfoBase.plist diff --git a/scripts/ios/app_config.sh b/scripts/ios/app_config.sh index 38e0c429c..4512d3028 100755 --- a/scripts/ios/app_config.sh +++ b/scripts/ios/app_config.sh @@ -10,6 +10,7 @@ if [ -z "$APP_IOS_TYPE" ]; then fi cd ../.. # go to root +cp -rf ./ios/Runner/InfoBase.plist ./ios/Runner/Info.plist /usr/libexec/PlistBuddy -c "Set :CFBundleDisplayName ${APP_IOS_NAME}" ./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