-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
41 lines (39 loc) · 1.13 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ApptentiveKit",
defaultLocalization: "en",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "ApptentiveKit",
targets: ["ApptentiveKit"]
)
],
dependencies: [
.package(url: "https://github.com/iwill/generic-json-swift.git", from: "2.0.0")
],
targets: [
.target(
name: "ApptentiveKit",
dependencies: [],
exclude: ["Info.plist"],
resources: [
.copy("Resources/SwiftPM.txt"),
.copy("Resources/Distribution.plist"),
.copy("Resources/PrivacyInfo.xcprivacy")
]
),
.testTarget(
name: "ApptentiveKit Tests",
dependencies: [
.product(name: "GenericJSON", package: "generic-json-swift")
],
path: "Tests/ApptentiveKit",
exclude: ["UI Tests", "Integration Tests"]
)
]
)