From 83ffe00549eb54dbcc2213bd0b8882f6f6113ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=84=ED=98=84?= Date: Thu, 17 Oct 2024 00:49:58 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Tuist=20CFBundleShortVersionString=201.?= =?UTF-8?q?2.3=EC=9C=BC=EB=A1=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8=20?= =?UTF-8?q?(#678)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bundle+Ext xAppKey 값 수정 - BBNetwork Header xAppKey 값 수정 --- 14th-team5-iOS/App/Project.swift | 2 +- 14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift | 2 +- 14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/14th-team5-iOS/App/Project.swift b/14th-team5-iOS/App/Project.swift index 32d643c8f..91e141b03 100644 --- a/14th-team5-iOS/App/Project.swift +++ b/14th-team5-iOS/App/Project.swift @@ -19,7 +19,7 @@ private let targets: [Target] = [ "CFBundleDisplayName": .string("Bibbi"), "CFBundleVersion": .string("1"), "CFBuildVersion": .string("0"), - "CFBundleShortVersionString": .string("1.2.2"), + "CFBundleShortVersionString": .string("1.2.3"), "UILaunchStoryboardName": .string("LaunchScreen.storyboard"), "UISupportedInterfaceOrientations": .array([.string("UIInterfaceOrientationPortrait")]), "UIUserInterfaceStyle": .string("Dark"), diff --git a/14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift b/14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift index 21b658e7e..a814974a3 100644 --- a/14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift +++ b/14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift @@ -65,6 +65,6 @@ extension Bundle { } public var xAppKey: String { - "7c5aaa36-570e-491f-b18a-26a1a0b72959" + "db3ca026-0f9c-415a-a250-c97807f54add" } } diff --git a/14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift b/14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift index 2eff6e07e..26bc95141 100644 --- a/14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift +++ b/14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift @@ -53,7 +53,7 @@ public enum BibbiAPI { public var value: String { switch self { case let .auth(token): return "Bearer \(token)" - case .xAppKey: return "7b159d28-b106-4b6d-a490-1fd654ce40c2" // TODO: - 번들에서 가져오기 + case .xAppKey: return "db3ca026-0f9c-415a-a250-c97807f54add" // TODO: - 번들에서 가져오기 case let .xAuthToken(token): return "\(token)" case .contentForm: return "application/x-www-form-urlencoded" case .contentJson: return "application/json"