Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Tuist CFBundleShortVersionString 1.2.3으로 업데이트 #678

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 14th-team5-iOS/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion 14th-team5-iOS/Core/Sources/Extensions/Bundle+Ext.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ extension Bundle {
}

public var xAppKey: String {
"7c5aaa36-570e-491f-b18a-26a1a0b72959"
"db3ca026-0f9c-415a-a250-c97807f54add"
}
}
2 changes: 1 addition & 1 deletion 14th-team5-iOS/Core/Sources/Trash/BBNetwork/API.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading