Skip to content

Commit

Permalink
[Infra] App Version Config
Browse files Browse the repository at this point in the history
  • Loading branch information
jisu15-kim committed Sep 15, 2024
1 parent 010e460 commit ea72eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let infoPlist = InfoPlist.extendingDefault(
"UIColorName": "",
"UIImageName": "",
],
"CFBundleShortVersionString": "$(MARKETING_VERSION)",
"CFBundleShortVersionString": .string(AppConfig.appVersion),
"CFBundleVersion": "$(CURRENT_PROJECT_VERSION)",
"App Enviroment": "$(APP_ENV)",
"CFBundleDisplayName": "${INFOPLIST_KEY_CFBundleDisplayName}"
Expand Down Expand Up @@ -64,7 +64,7 @@ enum BuildSetting {
enum App {
static func base(_ config: AppConfig) -> SettingsDictionary {
return [
"MARKETING_VERSION": AppConfig.appVersion,
"MARKETING_VERSION": AppConfig.appVersionValue,
"CURRENT_PROJECT_VERSION": AppConfig.buildNumber,
"INFOPLIST_KEY_CFBundleDisplayName": config.appDisplayName
]
Expand Down

0 comments on commit ea72eb3

Please sign in to comment.