Skip to content

Commit 7c82ffc

Browse files
authored
[NL-84]: 앱 버전 설정 및 이름 한글로 변경 (#55)
1 parent 6962096 commit 7c82ffc

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

App/Project.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ struct AppLayer: Layer {
1616
infoPlist: .extendingDefault(
1717
with: [
1818
"CFBundleDisplayName": "$(APP_NAME)",
19+
"CFBundleShortVersionString": "$(MARKETING_VERSION)",
20+
"CFBundleVersion": "$(CURRENT_PROJECT_VERSION)",
1921
"UILaunchStoryboardName": "LaunchScreen",
2022
"UISupportedInterfaceOrientations": [
2123
"UIInterfaceOrientationPortrait"
@@ -40,21 +42,23 @@ struct AppLayer: Layer {
4042
base: [
4143
"PRODUCT_BUNDLE_IDENTIFIER": "$(APP_IDENTIFIER)",
4244
"TARGETED_DEVICE_FAMILY": "1",
45+
"MARKETING_VERSION": "1.0.0",
46+
"CURRENT_PROJECT_VERSION": "0",
4347
],
4448
configurations: [
4549
.debug(
4650
name: .debug,
4751
settings: [
4852
"APP_IDENTIFIER": "com.hanbang.satto.debug",
49-
"APP_NAME": "Satto Debug",
53+
"APP_NAME": "사또 Debug",
5054
"OTHER_SWIFT_FLAGS": "$(inherited) -DDEBUG",
5155
]
5256
),
5357
.release(
5458
name: .release,
5559
settings: [
5660
"APP_IDENTIFIER": "com.hanbang.satto",
57-
"APP_NAME": "Satto",
61+
"APP_NAME": "사또",
5862
"OTHER_SWIFT_FLAGS": "$(inherited) -DRELEASE",
5963
]
6064
),

Feature/Setting/Sources/MyPage/MyPageViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import Extension
1212
import SnapKit
1313
import Then
1414
import UIKit
15+
import SafariServices
1516

1617
enum MyPageSection {
1718
case profile(MyProfileInfoCollectionViewCellModel)
@@ -262,7 +263,6 @@ extension MyPageViewController: UICollectionViewDelegateFlowLayout {
262263
import Auth
263264
import DIInjector
264265
import NetworkCore
265-
import SafariServices
266266

267267
@available(iOS 17.0, *)
268268
#Preview {

0 commit comments

Comments
 (0)