forked from voxeet/voxeet-uxkit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
44 lines (43 loc) · 1.1 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
40
41
42
43
44
// swift-tools-version:5.3
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",
from: "3.3.3"
),
.package(
name: "Kingfisher",
url: "https://github.com/onevcat/Kingfisher.git",
from: "7.1.0"
)
],
targets:
[
.target(
name: "VoxeetUXKit",
dependencies: [
.product(name:"VoxeetSDK", package: "VoxeetSDK"),
.product(name:"Kingfisher", package: "Kingfisher"),
],
path: "VoxeetUXKit",
exclude: ["Info.plist"],
resources: [
.process("Info.plist"),
.process("Resources/Images"),
.process("Resources/Sounds"),
.process("Resources/Views")
])
]
)