-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
39 lines (37 loc) · 1.29 KB
/
Package.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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Desk360LiveChat",
platforms: [
.iOS(.v13),
.macOS(.v10_14)
],
products: [
.library(
name: "Desk360LiveChat",
targets: ["Desk360LiveChat"]
),
],
dependencies: [
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .branch("main")),
.package(url: "https://github.com/Alamofire/Alamofire.git", .branch("master")),
.package(url: "https://github.com/onevcat/Kingfisher.git", .branch("master")),
.package(url: "https://github.com/Teknasyon-Teknoloji/PersistenceKit.git", .branch("master")),
.package(url: "https://github.com/ninjaprox/NVActivityIndicatorView.git", .branch("master"))
],
targets: [
.target(
name: "Desk360LiveChat",
dependencies: [
.product(name: "FirebaseAuth", package: "firebase-ios-sdk"),
.product(name: "FirebaseDatabase", package: "firebase-ios-sdk"),
"Alamofire",
"Kingfisher",
"NVActivityIndicatorView",
"PersistenceKit"
],
path: "Sources",
resources: [.process("Assets/Desk360LiveChatAssets.bundle")]
)
]
)