-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
62 lines (60 loc) · 2.24 KB
/
Project.swift
File metadata and controls
62 lines (60 loc) · 2.24 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
import ProjectDescription
let projectSettings: Settings = .settings(
configurations: [
.debug(name: "Debug", xcconfig: "SSP-iOS/Resources/Secrets/AppConfig.xcconfig"),
.release(name: "Release", xcconfig: "SSP-iOS/Resources/Secrets/AppConfig.xcconfig")
],
defaultSettings: .recommended
)
let project = Project(
name: "SSP-iOS",
settings: projectSettings,
targets: [
.target(
name: "SSP-iOS",
destinations: .iOS,
product: .app,
bundleId: "io.tuist.SSP-iOS",
infoPlist: .extendingDefault(with: [
"UILaunchStoryboardName": "LaunchScreen",
"KAKAO_API_KEY": "$(KAKAO_NATIVE_APP_KEY)",
"CFBundleURLTypes": [
[
"CFBundleTypeRole": "Editor",
"CFBundleURLSchemes": ["kakao$(KAKAO_NATIVE_APP_KEY)"]
]
],
"LSApplicationQueriesSchemes": [
"kakaokompassauth",
"kakaolink",
"kakaoplus",
"kakaotalk"
],
"NSCalendarsFullAccessUsageDescription": "캘린더 접근을 허용해주세요",
"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"
],
"UIRequiresFullScreen": true
]),
sources: ["SSP-iOS/Sources/**"],
resources: ["SSP-iOS/Resources/**"],
entitlements: "SSP-iOS/Entitlements/SSP-iOS.entitlements",
dependencies: [
.external(name: "KakaoSDKCommon"),
.external(name: "KakaoSDKAuth"),
.external(name: "KakaoSDKUser"),
.external(name: "KakaoSDKTalk"),
.external(name: "Moya"),
.external(name: "KeychainAccess")
]
)
]
)