From 6c7142fcdebef5d1cb8d37df7845b2b3708e2f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=98=81=EC=9D=B8?= <0inn1220@gmail.com> Date: Sun, 23 Apr 2023 12:19:44 +0900 Subject: [PATCH] =?UTF-8?q?[Feat]=20#199=20-=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?=EB=B0=8F=20=EB=B9=8C=EB=93=9C=20=EB=84=98=EB=B2=84=20infoPlist?= =?UTF-8?q?=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EnvPlugin/ProjectDescriptionHelpers/InfoPlists.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SOPT-iOS/Plugins/EnvPlugin/ProjectDescriptionHelpers/InfoPlists.swift b/SOPT-iOS/Plugins/EnvPlugin/ProjectDescriptionHelpers/InfoPlists.swift index 019f8dbc..5deeb0e9 100644 --- a/SOPT-iOS/Plugins/EnvPlugin/ProjectDescriptionHelpers/InfoPlists.swift +++ b/SOPT-iOS/Plugins/EnvPlugin/ProjectDescriptionHelpers/InfoPlists.swift @@ -2,9 +2,9 @@ import ProjectDescription public extension Project { static let appInfoPlist: [String: InfoPlist.Value] = [ - "CFBundleShortVersionString": "1.0.0", + "CFBundleShortVersionString": "$(MARKETING_VERSION)", "CFBundleDevelopmentRegion": "ko", - "CFBundleVersion": "1", + "CFBundleVersion": "$(CURRENT_PROJECT_VERSION)", "CFBundleIdentifier": "com.sopt-stamp-iOS.release", "CFBundleDisplayName": "SOPT", "UILaunchStoryboardName": "LaunchScreen", @@ -46,9 +46,9 @@ public extension Project { ] static let demoInfoPlist: [String: InfoPlist.Value] = [ - "CFBundleShortVersionString": "1.0.0", + "CFBundleShortVersionString": "$(MARKETING_VERSION)", "CFBundleDevelopmentRegion": "ko", - "CFBundleVersion": "1", + "CFBundleVersion": "$(CURRENT_PROJECT_VERSION)", "CFBundleIdentifier": "com.sopt-stamp-iOS.test", "CFBundleDisplayName": "SOPT-Test", "UILaunchStoryboardName": "LaunchScreen",