-
Notifications
You must be signed in to change notification settings - Fork 66
/
Package.swift
36 lines (32 loc) · 1.26 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
// swift-tools-version:5.3
import PackageDescription
let mParticle_Apple_SDK_URL = "https://static.mparticle.com/sdk/ios/v8.27.3/mParticle_Apple_SDK.xcframework.zip"
let mParticle_Apple_SDK_Checksum = "c72bc87ac996dce37223eaa12610ba93997278fe7816dbd101608fa34a067f33"
let mParticle_Apple_SDK_NoLocation_URL = "https://static.mparticle.com/sdk/ios/v8.27.3/mParticle_Apple_SDK_NoLocation.xcframework.zip"
let mParticle_Apple_SDK_NoLocation_Checksum = "1493cd0b33318d01899c24aca4f8f6d6182f5d83fd55a27f130efcf0feef1297"
let package = Package(
name: "mParticle-Apple-SDK",
platforms: [ .iOS(.v9), .tvOS(.v9) ],
products: [
.library(
name: "mParticle-Apple-SDK",
targets: ["mParticle_Apple_SDK"]),
.library(
name: "mParticle-Apple-SDK-NoLocation",
targets: ["mParticle_Apple_SDK_NoLocation"]),
],
dependencies: [
],
targets: [
.binaryTarget(
name: "mParticle_Apple_SDK",
url: mParticle_Apple_SDK_URL,
checksum: mParticle_Apple_SDK_Checksum
),
.binaryTarget(
name: "mParticle_Apple_SDK_NoLocation",
url: mParticle_Apple_SDK_NoLocation_URL,
checksum: mParticle_Apple_SDK_NoLocation_Checksum
),
]
)