-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
30 lines (29 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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "mParticle-CleverTap",
platforms: [ .iOS(.v9) ],
products: [
.library(
name: "mParticle-CleverTap",
targets: ["mParticle-CleverTap"]),
],
dependencies: [
.package(name: "mParticle-Apple-SDK",
url: "https://github.com/mParticle/mparticle-apple-sdk",
.upToNextMajor(from: "8.22.0")),
.package(name: "CleverTapSDK",
url: "https://github.com/CleverTap/clevertap-ios-sdk",
.upToNextMajor(from: "7.0.0")),
],
targets: [
.target(
name: "mParticle-CleverTap",
dependencies: ["mParticle-Apple-SDK", "CleverTapSDK"],
path: "mParticle-CleverTap",
resources: [.process("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."
),
]
)