-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
64 lines (63 loc) · 2.42 KB
/
Project.swift
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
import ProjectDescription
let project = Project(
name: "Palette",
targets: [
.target(
name: "Palette",
destinations: .iOS,
product: .app,
bundleId: "xyz.paleteapp.iosapp",
infoPlist: .extendingDefault(
with: [
"CFBundleDisplayName": "Palette",
"UISupportedInterfaceOrientations": ["UIInterfaceOrientationPortrait"],
"NSPhotoLibraryAddUsageDescription": "생성된 포스터를 사용자의 갤러리에 저장하기 위한 권한입니다.",
"NSAppTransportSecurity": ["NSAllowsArbitraryLoads": true],
"UILaunchStoryboardName": "LaunchScreen.storyboard",
"UIAppFonts": [
"Pretendard-Black.otf",
"Pretendard-Bold.otf",
"Pretendard-ExtraBold.otf",
"Pretendard-ExtraLight.otf",
"Pretendard-Light.otf",
"Pretendard-Medium.otf",
"Pretendard-Regular.otf",
"Pretendard-SemiBold.otf",
"Pretendard-Thin.otf",
"SUIT-Bold.otf",
"SUIT-ExtraBold.otf",
"SUIT-ExtraLight.otf",
"SUIT-Heavy.otf",
"SUIT-Light.otf",
"SUIT-Medium.otf",
"SUIT-Regular.otf",
"SUIT-SemiBold.otf",
"SUIT-Thin.otf",
]
]
),
sources: ["Palette/Sources/**"],
resources: ["Palette/Resources/**"],
dependencies: [
.external(name: "Alamofire"),
.external(name: "RiveRuntime"),
.external(name: "Kingfisher"),
.external(name: "FlowKit"),
.external(name: "SwiftDotenv"),
.external(name: "SkeletonUI"),
]
),
.target(
name: "PaletteIosAppTests",
destinations: .iOS,
product: .unitTests,
bundleId: "xyz.paleteapp.iosAppTests",
infoPlist: .default,
sources: ["Palette/Tests/**"],
resources: [],
dependencies: [
.target(name: "Palette")
]
),
]
)