-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
66 lines (65 loc) · 2.57 KB
/
Project.swift
File metadata and controls
66 lines (65 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import ProjectDescription
let project = Project(
name: "RichDiary",
settings: .settings(
base: [
"DEVELOPMENT_TEAM": "586LZSS32L",
"MARKETING_VERSION": "1.0.0",
"CURRENT_PROJECT_VERSION": "1",
],
debug: [:],
release: [:],
defaultSettings: .recommended
),
targets: [
.target(
name: "RichDiary",
destinations: [.iPhone],
product: .app,
productName: "RichDiary",
bundleId: "io.tuist.RichDiary",
deploymentTargets: .iOS("16.0"),
infoPlist: .extendingDefault(
with: [
"UILaunchStoryboardName": "LaunchScreen",
"UIApplicationSceneManifest": [
"UIApplicationSupportsMultipleScenes": false,
"UISceneConfigurations": [
"UIWindowSceneSessionRoleApplication": [
[
"UISceneConfigurationName": "Default Configuration",
"UISceneDelegateClassName": "$(PRODUCT_MODULE_NAME).SceneDelegate"
],
]
]
],
"CFBundleIconName": "AppIcon",
"CFBundleShortVersionString": "$(MARKETING_VERSION)",
"CFBundleVersion": "$(CURRENT_PROJECT_VERSION)",
"CFBundleDisplayName": "부자가계부",
"UIAppFonts": [
"Pretendard-Bold.otf",
"Pretendard-Medium.otf",
"Pretendard-Regular.otf",
"Pretendard-SemiBold.otf"
],
"UIUserInterfaceStyle": "Light",
"UISupportedInterfaceOrientations": [
"UIInterfaceOrientationPortrait"
],
]
),
sources: ["RichDiary/Sources/**"],
resources: ["RichDiary/Resources/**"],
dependencies: [
.external(name: "SnapKit", condition: .none),
.external(name: "Then", condition: .none),
.external(name: "RxSwift", condition: .none),
.external(name: "RxCocoa", condition: .none),
.external(name: "RxRelay", condition: .none),
.external(name: "RealmSwift", condition: .none),
.external(name: "Realm", condition: .none)
]
),
]
)