-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathProject.swift
28 lines (26 loc) · 1.07 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
import ProjectDescription
// MARK: - Project
// Creates our project using a helper function defined in ProjectDescriptionHelpers
let project = Project(
name: "CommonModule",
organizationName: "Sendbird",
targets: [
Target(
name: "CommonModule",
platform: .iOS,
product: .framework,
bundleId: "com.sendbird.chat.CommonModule",
deploymentTarget: .iOS(targetVersion: "13.0", devices: .iphone),
infoPlist: .default,
sources: ["Sources/**"],
resources: ["Resources/**"],
dependencies: [
.external(name: "SendbirdChatSDK"),
.external(name: "Kingfisher")
// .xcframework(path: .relativeToRoot("Modules/External/Kingfisher-7.2.0/Kingfisher.xcframework")),
// .xcframework(path: .relativeToRoot("Modules/Internal/SendbirdChat-4.0.0/SendbirdChatSDK.xcframework")),
// .project(target: "SendbirdChat", path: .relativeToRoot("Modules/Internal/SendbirdChat-Debug")),
]
)
]
)