-
Notifications
You must be signed in to change notification settings - Fork 13
/
Package.swift
31 lines (30 loc) · 1006 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "mParticle-UrbanAirship",
platforms: [ .iOS(.v14) ],
products: [
.library(
name: "mParticle-UrbanAirship",
targets: ["mParticle-UrbanAirship"]),
],
dependencies: [
.package(name: "mParticle-Apple-SDK",
url: "https://github.com/mParticle/mparticle-apple-sdk",
.upToNextMajor(from: "8.22.0")),
.package(name: "Airship",
url: "https://github.com/urbanairship/ios-library",
.upToNextMajor(from: "18.2.0")),
],
targets: [
.target(
name: "mParticle-UrbanAirship",
dependencies: [
.byName(name: "mParticle-Apple-SDK"),
.product(name: "AirshipCore", package: "Airship"),
],
path: "mParticle-UrbanAirship",
resources: [.process("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."),
]
)