-
Notifications
You must be signed in to change notification settings - Fork 12
/
Package.swift
39 lines (38 loc) · 978 Bytes
/
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.5
import PackageDescription
let package = Package(
name: "VoxeetUXKit",
defaultLocalization: "en",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "VoxeetUXKit", targets: ["VoxeetUXKit"])
],
dependencies: [
.package(
name: "VoxeetSDK",
url: "https://github.com/voxeet/voxeet-sdk-ios.git",
.upToNextMajor(from: "3.0.0")
),
.package(
name: "Kingfisher",
url: "https://github.com/onevcat/Kingfisher.git",
.upToNextMajor(from: "7.0.0")
)
],
targets:
[
.target(
name: "VoxeetUXKit",
dependencies: [
Target.Dependency.byName(name: "VoxeetSDK"),
Target.Dependency.byName(name: "Kingfisher")
],
path: "VoxeetUXKit",
resources: [
.process("Assets"),
.process("Other")
])
]
)