-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
57 lines (56 loc) · 2.45 KB
/
Project.swift
File metadata and controls
57 lines (56 loc) · 2.45 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
import ProjectDescription
let project = Project(
name: "TalkPick",
settings: .settings(configurations: [
.debug(name: "Debug", xcconfig: "Version.xcconfig"),
.release(name: "Release", xcconfig: "Version.xcconfig"),
]),
packages: [
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.9.0"),
.package(url: "https://github.com/SnapKit/SnapKit", from: "5.7.0"),
.package(url: "https://github.com/Alamofire/Alamofire", from: "5.9.0"),
.package(url: "https://github.com/kakao/kakao-ios-sdk", from: "2.21.0"),
.package(url: "https://github.com/onevcat/Kingfisher", from: "8.0.0"),
.package(url: "https://github.com/google/GoogleSignIn-iOS", from: "7.0.0"),
.package(url: "https://github.com/Juanpe/SkeletonView", from: "1.7.0")
],
targets: [
.target(
name: "TalkPick",
destinations: .iOS,
product: .app,
bundleId: "io.tuist.TalkPick",
infoPlist: .extendingDefault(
with: [
"UILaunchStoryboardName": "LaunchScreen.storyboard",
"UIApplicationSceneManifest": [
"UIApplicationSupportsMultipleScenes": false,
"UISceneConfigurations": [
"UIWindowSceneSessionRoleApplication": [
[
"UISceneConfigurationName": "Default Configuration",
"UISceneDelegateClassName": "$(PRODUCT_MODULE_NAME).SceneDelegate"
],
]
]
],
"GIDClientID": "613623896854-8ngku5ptb32oio9kjpnmpeck9iedgtfv.apps.googleusercontent.com",
]
),
sources: ["TalkPick/Sources/**"],
resources: ["TalkPick/Resources/**"],
dependencies: [
.package(product: "RxSwift"),
.package(product: "RxCocoa"),
.package(product: "SnapKit"),
.package(product: "Alamofire"),
.package(product: "KakaoSDKCommon"),
.package(product: "KakaoSDKAuth"),
.package(product: "KakaoSDKUser"),
.package(product: "Kingfisher"),
.package(product: "GoogleSignIn"),
.package(product: "SkeletonView"),
]
)
]
)