-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
36 lines (34 loc) · 1.35 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
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Insider",
products: [
.library(
name: "InsiderMobile",
targets: ["InsiderMobile"]),
.library(
name: "InsiderGeofence",
targets: ["InsiderGeofence"]),
.library(
name: "InsiderMobileAdvancedNotification",
targets: ["InsiderMobileAdvancedNotification"])
],
targets: [
.binaryTarget(
name: "InsiderMobile",
url: "https://mobilesdk.useinsider.com/iOS/13.6.3/InsiderMobileIOSFramework.zip",
checksum: "91c99fffa5dd553802d75fd356e1845c502f85f12e6015b66ebb0bc3d021ebbf"
),
.binaryTarget(
name: "InsiderGeofence",
url: "https://mobilesdk.useinsider.com/iOS/InsiderGeofence/1.2.0/InsiderGeofenceIOSFramework.zip",
checksum: "c180df9943ebc66a13717d6ddfc14d7cb225c98b3c5bfcaad5236f5f2127aba5"
),
.binaryTarget(
name: "InsiderMobileAdvancedNotification",
url: "https://mobilesdk.useinsider.com/iOSNotification/2.1.0/InsiderMobileAdvancedNotification.zip",
checksum: "783e81e3725b2663953d613cc324e4ea9ec6d4db0bfd64b6444f828349d43c54"
),
]
)