Skip to content

Commit

Permalink
Merge branch 'develop' into feat/#680-add-oslog-module
Browse files Browse the repository at this point in the history
  • Loading branch information
Do-hyun-Kim authored Oct 17, 2024
2 parents f998917 + 83ffe00 commit 8917c94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 14th-team5-iOS/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ private let targets: [Target] = [
"CFBundleDisplayName": .string("Bibbi"),
"CFBundleVersion": .string("1"),
"CFBuildVersion": .string("0"),
"CFBundleShortVersionString": .string("1.2.2"),
"UILaunchStoryboardName": .string("LaunchScreen"),
"CFBundleShortVersionString": .string("1.2.3"),
"UILaunchStoryboardName": .string("LaunchScreen.storyboard"),
"UISupportedInterfaceOrientations": .array([.string("UIInterfaceOrientationPortrait")]),
"UIUserInterfaceStyle": .string("Dark"),
"NSPhotoLibraryAddUsageDescription" : .string("프로필 사진, 피드 업로드를 위한 사진 촬영을 위해 Bibbi가 앨범에 접근할 수 있도록 허용해 주세요"),
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

0 comments on commit 8917c94

Please sign in to comment.